body {
 background: #f0f0f1;
}
.login-container {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.company-logo {
    padding-top: 0;
    margin-top: 0;
    width: 250px;
    height: auto;
    padding-bottom: 50px;
}
.form-container {
    max-width: 400px;
    margin: 0 auto;
    padding: 20px 30px;
    background: white;
    border-radius: 10px;
}
.form-container h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #333;
}
.field {
    display: flex;
    width: 300px;
    flex-direction: column;
    gap: 4px;
    height: auto !important;
    margin-bottom: 15px !important;
}
.field.note {
    margin-bottom: 20px;
    text-align: center;
    color: #555;
}
.field .label {
    display: block;
    margin-bottom: 10px;
    font-weight: bold;
    color: #333;
}
.email, .password {
    font-size: var(--text-size-default) !important;
}
.control {
    width: 100% !important;
}
.field .control input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}
.actions-toolbar {
    display: flex;
    justify-content: flex-end;
    text-align: center;
    margin-left: 0 !important;
    margin-top: 20px;
}
.actions-toolbar .primary .action {
    background: #0073aa;
    border: none;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}
.actions-toolbar .primary .action:hover {
    background: #005f8a;
}
.actions-toolbar .secondary .action {
    display: block;
    margin-top: 10px;
    color: #0073aa;
    text-decoration: none;
}
.actions-toolbar .secondary .action:hover {
    color: #005f8a;
}
.register-link {
    text-align: center;
    margin-top: 20px;
}
.register-link a {
    color: #0073aa;
    text-decoration: none;
    font-weight: bold;
}
.register-link a:hover {
    color: #005f8a;
}
.fieldset:last-child {
    margin-bottom: 0 !important;
}
.field.choice {
    display: flex;
    flex-direction: row;
}
.field.choice::before, .field.choice::after {
    display: none !important;
}
.fieldset::after {
    display: none !important;
}
.checkbox {
    width: 20px;
}
.action.login.primary {
    border-radius: 45px;
    font-weight: normal;
    background: black !important;
}
.action.remind {
    margin-top: 16px;
}
