/* Reset default margin and padding */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f0f0f0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.login-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-box {
    background: #006666 !important; /* Update this to your desired color */
    width: 400px;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.login-logo {
    width: 320px;
    margin-bottom: 20px;
}

.login-box h2 {
    color: #333;
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 10px;
}

.login-box .textbox {
    position: relative;
    margin-bottom: 20px;
}

.login-box .textbox input {
    width: 100%;
    padding: 10px;
    background: #f0f0f0;
    border: none;
    outline: none;
    font-size: 12px;
    border-radius: 6px;
}

.login-box .textbox input:focus {
    background: #e1e1e1;
}

.login-box button {
    width: 100%;
    padding: 12px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.login-box button:hover {
    background-color: #006666;
}

.login-box .forgot {
    text-align: left;
    margin-bottom: 10px;
}

.login-box .forgot a {
    color: #007bff;
    text-decoration: none;
}

.login-box .forgot-panel {
    display: none;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #ccc;
    text-align: left; /* Ensure text alignment is left */
}

.login-box .forgot-panel input {
    width: calc(100% - 80px);
    padding: 8px;
    margin-right: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
}

.login-box .forgot-panel button {
    padding: 8px 20px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.login-box .forgot-panel button:hover {
    background-color: #0056b3;
}

.login-box .forgot-message {
    color: #006666;
    margin-top: 10px;
}

.login-box .register {
    text-align: left;
    margin-top: 15px;
}

.login-box .register a {
    color: #006666;
    text-decoration: none;
}

.remember {
	text-align: left;
    margin-bottom: 10px;
    font-size: 14px;
}

.remember input[type="checkbox"] {
    margin-right: 5px;
}

