:root {
--primary-color: #ee3388;
--secondary-color: #D27D2D;
--accent-color: #e74c3c;
--light-color: #ecf0f1;
--dark-color: #2c3e50;
--primary: #ee3388;
--secondary: #D27D2D;
--accent: #fbbc05;
--dark: #2c3e50;
--light: #f8f9fa;
}

body {
background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
min-height: 100vh;
display: flex;
align-items: center;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.login-container,.register-container {
background-color: rgba(255, 255, 255, 0.95);
border-radius: 15px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
overflow: hidden;
}

.brand-section {
background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
color: white;
padding: 40px 30px;
height: 100%;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
}

.brand-name {
font-size: 2rem;
font-weight: 700;
margin-bottom: 10px;
}

.register-header {
background: linear-gradient(to right, var(--primary), var(--secondary));
color: white;
padding: 30px;
text-align: center;
}

.register-header h1 {
font-weight: 700;
margin-bottom: 5px;
}

.register-header p {
opacity: 0.9;
margin-bottom: 0;
}

.register-form {
padding: 30px;
}

.brand-tagline {
font-size: 1rem;
opacity: 0.9;
}

.login-form-section {
padding: 40px 30px;
}

.form-control {
border-radius: 50px;
padding: 12px 20px;
border: 1px solid #ddd;
margin-bottom: 20px;
}

.form-control:focus {
border-color: var(--primary-color);
box-shadow: 0 0 0 0.25rem rgba(52, 152, 219, 0.25);
}
.btn-login{
background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
border: none;
border-radius: 50px;
padding: 12px;
color: white;
font-weight: 600;
width: 100%;
margin-top: 10px;
transition: all 0.3s;
}



.btn-login:hover{
transform: translateY(-2px);
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-register{
background: linear-gradient(to right, var(--primary), var(--secondary));
border: none;
color: white;
padding: 12px;
font-weight: 600;
transition: all 0.3s;
}

.btn-register:hover{
transform: translateY(-2px);
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.social-login {
display: flex;
justify-content: center;
gap: 15px;
margin: 25px 0;
}

.social-btn {
width: 45px;
height: 45px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
color: white;
font-size: 1.2rem;
transition: all 0.3s;
}


.travel-features {
background-color: var(--light);
padding: 30px;
border-left: 1px solid #eee;
}

.feature-item {
display: flex;
align-items: center;
margin-bottom: 20px;
}

.feature-icon {
background: linear-gradient(to right, var(--primary), var(--secondary));
color: white;
width: 50px;
height: 50px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin-right: 15px;
flex-shrink: 0;
}

.social-login {
margin-top: 20px;
}

.divider {
display: flex;
align-items: center;
text-align: center;
margin: 25px 0;
color: #777;
}

.password-field {
position: relative;
}

.password-toggle {
position: absolute;
right: 15px;
top: 50%;
transform: translateY(-50%);
background: none;
border: none;
color: #6c757d;
cursor: pointer;
transition: color 0.3s;
}

.password-toggle:hover {
color: #495057;
}

.password-strength {
height: 5px;
border-radius: 5px;
margin-top: 8px;
transition: all 0.3s;
}

.strength-weak {
background-color: #dc3545;
width: 25%;
}

.strength-fair {
background-color: #fd7e14;
width: 50%;
}

.strength-good {
background-color: #ffc107;
width: 75%;
}

.strength-strong {
background-color: #198754;
width: 100%;
}

.social-btn-register{
display: block;
width: 100%;
padding: 10px;
margin-bottom: 10px;
border-radius: 5px;
text-align: center;
text-decoration: none;
font-weight: 500;
transition: all 0.3s;
}

.social-btn-register:hover{
transform: translateY(-2px);
color: white;
box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.divider::before,
.divider::after {
content: '';
flex: 1;
border-bottom: 1px solid #ddd;
}

.divider span {
padding: 0 15px;
}

.social-btn-register.google {
background-color: #db4437;
color: white;
}

.social-btn-register.facebook {
background-color: #4267B2;
color: white;
}

/* .social-btn:hover {
transform: translateY(-2px);
color: white;
box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}
.social-btn:hover i{
    color: white;
} */



.login-link {
text-align: center;
margin-top: 20px;
}

.social-login-register{
     margin-top: 20px;
}

@media (max-width: 768px) {
.travel-features {
    border-left: none;
    border-top: 1px solid #eee;
}
}

.forgot  .card {
border: none;
border-radius: 10px;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.forgot .card-header {
background-color: #fff;
border-bottom: 1px solid #eaeaea;
padding: 1.5rem;
}

.forgot  .form-control:focus {
border-color: #ee3388;
box-shadow: 0 0 0 0.25rem #fd0dd540;
}

.forgot .btn-primary {
    padding: 0.75rem;
    
}
.back-to-login {
    color: #6c757d;
    text-decoration: none;
}
.back-to-login:hover {
    color: #0d6efd;
}
.success-icon {
    color: #198754;
    font-size: 4rem;
    margin-bottom: 1rem;
}