body {
    background-color: whitesmoke;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.login-box {
    background: white;
    padding: 30px;
    max-width: 350px;
    margin: 10% auto;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
}

.login-box h2 {
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: bold;
}

.login-box form {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.login-box.to-left form {
    align-items: unset;
}

.login-box label {
    align-self: flex-start;
    margin: 10px 0 5px;
    font-size: 14px;
}

.login-box input {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 5px;
    border: 1px solid #ccc;
    box-sizing: border-box;
}

.login-box .forgot {
    width: 100%;
    text-align: right;
    margin-bottom: 15px;
    font-size: 13px;
}

.login-box button {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 12px;
    width: 100%;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
}

.login-box .footer {
    margin-top: 15px;
    font-size: 14px;
}

.error {
    color: red;
    margin-bottom: 10px;
}

.back-login {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 14px;
}

.back-login:hover {
    background-color: #0056b3;
}

header {
    background-color: #007bff;
    padding: 15px;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
}

header button {
    padding: 10px 20px;
    font-size: 14px;
    background-color: white;
    color: #007bff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    margin-right: 10px;
}

header button:hover {
    background-color: #e6e6e6;
}

select {
    padding: 8px 32px 8px 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: white;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23555' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    appearance: none;
    font-family: Arial, sans-serif;
    font-size: 14px;
    color: #333;
    cursor: pointer;
    box-sizing: border-box;
}

select:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.2);
}

select:disabled {
    background-color: #f5f5f5;
    color: #aaa;
    cursor: not-allowed;
}

input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: #007bff;
    cursor: pointer;
    margin: 0 6px 0 0;
    vertical-align: middle;
}

input[type="checkbox"]:disabled {
    accent-color: #aaa;
    cursor: not-allowed;
}

input[type="checkbox"].checkbox-lg {
    width: 22px;
    height: 22px;
}

