* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(135deg, #fce7f3 0%, #f3e8ff 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.container {
    width: 100%;
    max-width: 900px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-card {
    background: white;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
    width: 100%;
    max-width: 800px;
    min-height: 500px;
}

.image-section {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    
}

.couple-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.form-section {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logo-section {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.logo {
    /* margin-right: 15px; */
    margin:  0 0 15px 0;
}

.brand-info h1 {
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 4px;
}

.brand-info p {
    font-size: 14px;
    color: #6b7280;
}

.welcome-section {
    margin-bottom: 30px;
}

.welcome-section h2 {
    font-size: 28px;
    font-weight: 400;
    color: #1f2937;
    margin-bottom: 8px;
}

.welcome-section p {
    font-size: 16px;
    color: #6b7280;
}

.login-form {
    width: 100%;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 400;
    color: #374151;
    margin-bottom: 8px;
}

.form-group input {
    width: 100%;
    height: 48px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 0 16px;
    font-size: 16px;
    transition: all 0.3s ease;
    background-color: #fafafa;
}

.form-group input:focus {
    outline: none;
    border-color: #b91c5c;
    background-color: white;
    box-shadow: 0 0 0 3px rgba(185, 28, 92, 0.1);
}

.forgot-password {
    text-align: right;
    margin-bottom: 30px;
}

.forgot-password a {
    color: #6b7280;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.forgot-password a:hover {
    color: #b91c5c;
}

.login-btn {
    width: 100%;
    height: 48px;
    background: #b91c5c;
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.login-btn:hover {
    background: #a21650;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(185, 28, 92, 0.3);
}

.login-btn:active {
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .login-card {
        flex-direction: column;
        max-width: 400px;
    }
    
    .image-section {
        min-height: 200px;
    }
    
    .form-section {
        padding: 30px;
    }
    
/* Update logo section */
.logo-section {
    display: flex;             
    flex-direction: column;    
    align-items: center;      
    justify-content: center;   
    text-align: center;         
    margin-bottom: 40px;   
}

.logo {
    margin: 0 0 15px 0;        
}

}

@media (max-width: 480px) {
    .container {
        padding: 10px;
    }
    
    .form-section {
        padding: 20px;
    }
    
    .welcome-section h2 {
        font-size: 24px;
    }
    
    .brand-info h1 {
        font-size: 20px;
    }
}





