
.gradient-custom-2 {
    background: #fccb90;
    background: -webkit-linear-gradient(to right, #ee7724, #d8363a, #dd3675, #b44593);
    background: linear-gradient(to right, #ee7724, #d8363a, #dd3675, #b44593);
}

@media (min-width: 768px) {
    .gradient-form {
        height: auto !important;
    }
}

@media (min-width: 769px) {
    .gradient-custom-2 {
        border-top-right-radius: .3rem;
        border-bottom-right-radius: .3rem;
    }
}

.login-container {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    overflow: hidden;
    /*min-height: 600px;*/
}

.login-image {
    background: linear-gradient(to right, #ee7724, #d8363a, #dd3675, #b44593);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.login-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="white" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
}

.login-illustration {
    color: white;
    text-align: center;
    z-index: 2;
    position: relative;
}

.login-illustration i {
    font-size: 120px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.login-form {
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-title {
    color: #2d3748;
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.form-subtitle {
    color: #718096;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.form-outline {
    position: relative;
    margin-bottom: 25px;
}

.form-outline input {
    width: 100%;
    height: 60px;
    padding: 20px 15px 5px 15px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 16px;
    background: transparent;
    outline: none;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-outline input:focus {
    border-color: #d8363a;
    box-shadow: 0 0 0 0.2rem rgba(216, 54, 58, 0.25);
}

.form-outline .form-label {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    color: #718096;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    pointer-events: none;
    background: white;
    padding: 0 5px;
}

.form-outline input:focus + .form-label,
.form-outline input:not(:placeholder-shown) + .form-label {
    top: 0;
    transform: translateY(-50%);
    font-size: 12px;
    color: #d8363a;
}

.btn-login {
    background: linear-gradient(to right, #ee7724, #d8363a, #dd3675, #b44593);
    border: none;
    border-radius: 12px;
    height: 60px;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    margin-top: 20px;
    color: white;
}

.btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(216, 54, 58, 0.3);
    color: white;
}

.btn-outline-danger {
    border: 2px solid #d8363a;
    color: #d8363a;
    background: transparent;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-danger:hover {
    background: #d8363a;
    color: white;
    transform: translateY(-2px);
}

.remember-forgot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px 0;
}

.form-check-label {
    color: #4a5568;
    font-weight: 500;
}

.forgot-link {
    color: #d8363a;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.forgot-link:hover {
    color: #b44593;
}

.social-login {
    margin-top: 30px;
    text-align: center;
}

.social-divider {
    position: relative;
    margin: 30px 0;
    text-align: center;
    color: #a0aec0;
}

.social-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #e2e8f0;
}

.social-divider span {
    background: white;
    padding: 0 20px;
    position: relative;
}

.btn-social {
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    height: 50px;
    margin: 0 10px;
    transition: all 0.3s ease;
}

.btn-social:hover {
    border-color: #d8363a;
    transform: translateY(-2px);
}

.signup-link {
    text-align: center;
    margin-top: 40px;
    color: #718096;
}

.signup-link a {
    color: #d8363a;
    text-decoration: none;
    font-weight: 600;
}

.signup-link a:hover {
    color: #b44593;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .login-container {
        margin: 20px;
        border-radius: 15px;
    }
    
    .login-image {
        min-height: 200px;
    }
    
    .login-illustration i {
        font-size: 80px;
        margin-bottom: 20px;
    }
    
    .login-form {
        padding: 40px 30px;
    }
    
    .form-title {
        font-size: 2rem;
    }
    
    .remember-forgot {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 576px) {
    .login-form {
        padding: 30px 20px;
    }
    
    .form-title {
        font-size: 1.8rem;
    }
}