body {
    background-color: #f8f9fa;
}

.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
    padding-top: 65px;
}

.login-form {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    width: 100%;
    text-align: center;
}

.login-form .icon {
    font-size: 5rem;
    color: #B700FF;
}

.login-form h2 {
    font-size: 2.5rem;
    color: #B700FF;
    margin-top: 20px;
    margin-bottom: 10px;
    font-weight: bold;
}

.login-form p {
    color: #6c757d;
    margin-bottom: 30px;
}

.form-group {
    text-align: left;
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #495057;
    font-weight: bold;
}

.form-group label .required {
    color: #dc3545;
}

.form-control {
    border-radius: 10px;
    border: 2px solid #ced4da;
    padding: 15px;
    width: 100%;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.form-control:focus {
    border-color: #B700FF;
    box-shadow: 0 0 0 0.2rem rgba(183, 0, 255, 0.25);
}

.btn-primary {
    background: #B700FF;
    border: none;
    border-radius: 10px;
    padding: 15px;
    font-size: 1.2rem;
    font-weight: bold;
    color: #fff;
    width: 100%;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background: #A000E6;
    color: #fff;
}

.login-links {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.login-links a {
    color: #6c757d;
    text-decoration: none;
}

.login-links a:hover {
    text-decoration: underline;
}

.email-verify-group {
    display: flex;
    align-items: center;
}

.email-verify-group .form-control {
    flex-grow: 1;
    margin-right: 10px;
}

.btn-send-code {
    background-color: #B700FF;
    color: white;
    border: none;
    padding: 15px 20px;
    border-radius: 10px;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s ease;
    font-weight: 500;
}

.btn-send-code:hover:not(:disabled) {
    background-color: #A000E6;
    transform: translateY(-1px);
}

.btn-send-code:disabled {
    background-color: #6c757d;
    cursor: not-allowed;
    transform: none;
}