

/* Login Page Styles */
.login-section {
    padding: 60px 0;
    min-height: 60vh;
    background-color: #fff;
}

.login-card {
    background-color: #fff;
    border-radius: 20px;
    padding: 40px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.back-button {
    position: absolute;
    left: 20px;
    top: 20px;
    color: #212529;
    font-size: 20px;
    transition: all 0.3s ease;
}

.back-button:hover {
    color: var(--primary-color);
    transform: translateX(-3px);
}

.login-logo {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

.login-header {
    text-align: left;
    margin-bottom: 30px;
}

.login-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.login-subtitle {
    color: #6c757d;
    font-size: 1rem;
}

.phone-input {
    padding: 15px;
    font-size: 1.1rem;
    border-radius: 10px;
    border: 1px solid #dee2e6;
}

.phone-input:focus {
    box-shadow: 0 0 0 0.25rem rgba(210, 186, 92, 0.25);
    border-color: var(--secondary-color);
}

.submit-button {
    padding: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 10px;
    margin-top: 10px;
    transition: all 0.3s ease;
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(210, 186, 92, 0.3);
}

/* International Telephone Input customization */
.iti {
    width: 100%;
    margin-bottom: 15px;
}

.iti__flag-container {
    z-index: 10;
}

.iti__selected-flag {
    padding: 0 15px;
    border-radius: 10px 0 0 10px;
}

.iti__country-list {
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .login-title {
        font-size: 2rem;
    }

    .login-card {
        padding: 30px;
    }
}

@media (max-width: 576px) {
    .login-card {
        padding: 20px;
    }

    .login-section {
        padding-top: 100px;
    }
}
