
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    
}

body {
    background: linear-gradient(135deg, #1c405f 0%, #0d2a42 100%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    color: #fff;
    overflow-x: hidden;
    font-family: 'Poppins', sans-serif;
}

.container {
    display: flex;
    width: 100%;
    max-width: 1200px;
    height: 550px;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
    animation: fadeIn 1s ease-out;
    position: relative;
}

.hero-section {
    flex: 1.5;
    background: #1c405f;
    padding:30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    z-index: 2;
   /* max-width: 600px;*/
    animation: slideInLeft 1.2s ease-out forwards;
}

.logo {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    animation: logoPulse 3s infinite ease-in-out;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

    .logo-icon i {
        font-size: 24px;
        color: #4a9fe3;
        animation: iconSpin 6s infinite linear;
    }

.logo h1 {
    font-size: 28px;
    font-weight: 700;
    background: linear-gradient(to right, #fff, #4a9fe3);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
    line-height: 1.2;
    animation-delay: 0.2s;
}

.hero-content p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 40px;
    line-height: 1.6;
    animation-delay: 0.4s;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top:30px;
    animation-delay: 0.6s;
}

.feature-card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    padding: 20px;
    display: flex;
    align-items: center;
    transition: all 0.4s ease;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

    .feature-card:nth-child(1) {
        animation-delay: 0.2s;
    }

    .feature-card:nth-child(2) {
        animation-delay: 0.3s;
    }

    .feature-card:nth-child(3) {
        animation-delay: 0.4s;
    }

    .feature-card:nth-child(4) {
        animation-delay: 0.5s;
    }

    .feature-card:hover {
        transform: translateY(-5px);
        background: rgba(255, 255, 255, 0.12);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }

.feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    position: relative;
}

    .feature-icon i {
        font-size: 22px;
        z-index: 2;
    }

.icon-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    opacity: 0.2;
}

.feature-text h3 {
    font-size: 18px;
    margin-bottom: 5px;
    font-weight: 500;
}

.feature-text p {
    font-size: 14px;
    opacity: 0.8;
    margin: 0;
}

/* Animations for icons */
.visa-request .icon-bg {
    background: #4a9fe3;
    animation: pulse-blue 3s infinite;
}

.upload .icon-bg {
    background: #4caf50;
    animation: pulse-green 3s infinite;
}

.cancellation .icon-bg {
    background: #ff6b6b;
    animation: pulse-red 3s infinite;
}

.verification .icon-bg {
    background: #ff9800;
    animation: pulse-orange 3s infinite;
}

.visa-request i {
    color: #4a9fe3;
    animation: float 4s ease-in-out infinite;
}

.upload i {
    color: #4caf50;
    animation: bounce 2s ease infinite;
}

.cancellation i {
    color: #ff6b6b;
    animation: shake 3s ease infinite;
}

.verification i {
    color: #ff9800;
    animation: spin 6s linear infinite;
}

/* Login Section */
.login-section {
    flex: 1;
    background: #fff;
    padding: 40px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    animation: slideInRight 1.2s ease-out forwards;
}

.login-container {
    max-width: 400px;
    margin: 0 auto;
    width: 100%;
}

.login-header {
    text-align: center;
    margin-bottom: 20px;
    animation: fadeIn 0.8s ease-out forwards;
    animation-delay: 0.4s;
}

    .login-header h2 {
        font-size: 32px;
        color: #1c405f;
        margin-bottom: 10px;
    }

    .login-header p {
        color: #666;
        font-size: 16px;
    }

.input-group {
    margin-bottom:15px;
    position: relative;
    animation: fadeIn 0.8s ease-out forwards;
}

    .input-group:nth-child(1) {
        animation-delay: 0.5s;
    }

    .input-group:nth-child(2) {
        animation-delay: 0.6s;
    }

    .input-group label {
        display: block;
        margin-bottom: 8px;
        color: #1c405f;
        font-weight: 500;
    }

/* NEW: Password container */
.password-container {
    position: relative;
}

    .password-container input {
        width: 100%;
        padding: 16px 30px 16px 20px; /* Extra padding for eye icon */
        border: 2px solid #e0e7ff;
        border-radius: 12px;
        font-size: 16px;
        transition: all 0.3s ease;
        background: #f8faff;
    }

.input-group input:not([type="password"]) {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e0e7ff;
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: #f8faff;
}

/* UPDATED: Focus color to #1c405f */
.input-group input:focus {
    outline: none;
    border-color: #1c405f;
    box-shadow: 0 0 0 4px rgba(28, 64, 95, 0.2);
    transform: scale(1.02);
}

/* NEW: Eye icon styling */
.toggle-password {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #aaa;
    font-size: 18px;
    transition: all 0.3s ease;
    z-index: 10;
}

    .toggle-password:hover {
        color: #1c405f;
    }

.remember-forgot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    animation: fadeIn 0.8s ease-out forwards;
    animation-delay: 0.7s;
}

.remember {
    display: flex;
    align-items: center;
    gap: 8px;
}

    .remember input {
        accent-color: #4a9fe3;
        cursor: pointer;
        transition: transform 0.3s ease;
    }

        .remember input:hover {
            transform: scale(1.1);
        }

    .remember label {
        color: #1c405f;
        cursor: pointer;
    }

.forgot-password {
    color: #4a9fe3;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    position: relative;
}

    .forgot-password:after {
        content: '';
        position: absolute;
        width: 0;
        height: 2px;
        bottom: -4px;
        left: 0;
        background-color: #1c405f;
        transition: width 0.3s ease;
    }

    .forgot-password:hover {
        color: #1c405f;
    }

        .forgot-password:hover:after {
            width: 100%;
        }

.login-btn {
    width: 100%;
    padding: 16px;
    background: #1c405f;
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(28, 64, 95, 0.3);
    animation: pulse 2s infinite ease-in-out;
    position: relative;
    overflow: hidden;
}

    .login-btn:before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        transition: 0.5s;
    }

    .login-btn:hover {
        background: #15314d;
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(28, 64, 95, 0.4);
    }

        .login-btn:hover:before {
            left: 100%;
        }

.social-login {
    text-align: center;
    margin-bottom: 30px;
    animation: fadeIn 0.8s ease-out forwards;
    animation-delay: 0.8s;
}

.social-text {
    color: #666;
    margin-bottom: 15px;
    position: relative;
}

    .social-text:before,
    .social-text:after {
        content: '';
        position: absolute;
        top: 50%;
        width: 30%;
        height: 1px;
        background: #e0e0e0;
        transition: width 0.5s ease;
    }

    .social-text:before {
        left: 0;
    }

    .social-text:after {
        right: 0;
    }

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f8ff;
    color: #1c405f;
    font-size: 18px;
    transition: all 0.3s ease;
    border: 1px solid #e0e7ff;
    transform: scale(1);
}

    .social-icon:hover {
        transform: translateY(-3px) scale(1.1);
        background: #1c405f;
        color: white;
        box-shadow: 0 5px 15px rgba(28, 64, 95, 0.2);
    }

.signup-link {
    text-align: center;
    color: #666;
    animation: fadeIn 0.8s ease-out forwards;
    animation-delay: 0.9s;
}

    .signup-link a {
        color: #4a9fe3;
        text-decoration: none;
        font-weight:500;
        position: relative;
    }

        .signup-link a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -2px;
            left: 0;
            background-color: #1c405f;
            transition: width 0.3s ease;
        }

        .signup-link a:hover {
            color: #1c405f;
        }

            .signup-link a:hover:after {
                width: 100%;
            }

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

@keyframes shake {
    0%, 100% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(5deg);
    }

    75% {
        transform: rotate(-5deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes pulse-blue {
    0%, 100% {
        transform: scale(1);
        opacity: 0.2;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.3;
    }
}

@keyframes pulse-green {
    0%, 100% {
        transform: scale(1);
        opacity: 0.2;
    }

    50% {
        transform: scale(1.15);
        opacity: 0.3;
    }
}

@keyframes pulse-red {
    0%, 100% {
        transform: scale(1);
        opacity: 0.2;
    }

    50% {
        transform: scale(1.25);
        opacity: 0.3;
    }
}

@keyframes pulse-orange {
    0%, 100% {
        transform: scale(1);
        opacity: 0.2;
    }

    50% {
        transform: scale(1.18);
        opacity: 0.3;
    }
}

@keyframes logoPulse {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.02);
    }
}

@keyframes iconSpin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(28, 64, 95, 0.3);
    }

    50% {
        transform: scale(1.02);
        box-shadow: 0 4px 20px rgba(28, 64, 95, 0.4);
    }
}

@keyframes circleFloat {
    0%, 100% {
        transform: translate(0, 0);
    }

    25% {
        transform: translate(5px, 5px);
    }

    50% {
        transform: translate(10px, 0);
    }

    75% {
        transform: translate(5px, -5px);
    }
}

/* Decorative elements */
.circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: circleFloat 15s infinite ease-in-out;
}

.circle-1 {
    width: 300px;
    height: 300px;
    background: #4a9fe3;
    top: -100px;
    right: -100px;
    animation-duration: 20s;
}

.circle-2 {
    width: 200px;
    height: 200px;
    background: #ff6b6b;
    bottom: -80px;
    left: -80px;
    animation-duration: 25s;
}

.circle-3 {
    width: 150px;
    height: 150px;
    background: #ff9800;
    top: 50%;
    left: 50%;
    animation-duration: 30s;
}

/* NEW: Form validation styles */
.input-group .error-message {
    color: #e74c3c;
    font-size: 14px;
    margin-top: 8px;
    display: none;
}

.input-group.error input {
    border-color: #e74c3c;
}

.input-group.error .error-message {
    display: block;
}

.success-message {
    background-color: #4CAF50;
    color: white;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    text-align: center;
    display: none;
}

/* Mobile Navigation */
.mobile-nav-toggle {
    display: none;
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 1000;
    background: rgba(28, 64, 95, 0.8);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

    .mobile-nav-toggle span {
        display: block;
        width: 25px;
        height: 3px;
        background: white;
        border-radius: 2px;
        transition: all 0.3s ease;
    }

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 42, 66, 0.95);
    z-index: 999;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.4s ease;
}

    .mobile-menu.active {
        opacity: 1;
        transform: translateY(0);
    }

    .mobile-menu a {
        color: white;
        text-decoration: none;
        font-size: 24px;
        margin: 15px 0;
        padding: 10px 20px;
        border-radius: 8px;
        transition: all 0.3s ease;
        text-align: center;
        width: 80%;
        max-width: 300px;
        background: rgba(255, 255, 255, 0.1);
    }

        .mobile-menu a:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-3px);
        }

/* Mobile close button */
.mobile-close {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 30px;
    color: white;
    background: transparent;
    border: none;
    cursor: pointer;
}

/* Responsive */
@media (max-width: 900px) {
    .container {
        flex-direction: column;
        height: auto;
        max-height: none;
    }

    .hero-section {
        padding: 40px 25px;
        order: 2;
        border-radius: 0 0 25px 25px;
    }

    .login-section {
        padding: 50px 30px;
        border-radius: 25px 25px 0 0;
    }

    .hero-content h2 {
        font-size: 32px;
    }

    .circle-3 {
        display: none;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .logo-icon {
        width: 45px;
        height: 45px;
    }

    .logo h1 {
        font-size: 24px;
    }
}
.hero-content{
    margin-top:2.5rem;
}



@media (max-width: 768px) {
    body {
        justify-content: unset !important;
        align-items: unset !important;
        overflow:hidden;
    }


    .container {
        border-radius: 25px;
     margin-top:7rem!important; 
       box-shadow:none!important;

    }

    .login-section {
        padding: 50px 30px;
        border-radius: 25px 25px 25px 25px!important;
    }

    .login-section {
        padding: 40px 25px;
    }

    .hero-section {
        padding: 35px 20px;
    }

    .hero-content h2 {
        font-size: 28px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .login-header h2 {
        font-size: 28px;
    }

    .login-header p {
        font-size: 15px;
    }

    .mobile-nav-toggle {
        display: flex;
    }
}

@media (max-width: 576px) {
    body {
        padding: 10px;
    }

    .container {
        border-radius: 15px;
        height: auto;
       /* min-height: 100vh;*/
    }

    .login-section, .hero-section {
        padding: 30px 20px;
    }

    .hero-content h2 {
        font-size: 24px;
    }

    .logo-icon {
        width: 40px;
        height: 40px;
    }

    .logo h1 {
        font-size: 22px;
    }

    .feature-card {
        padding: 15px;
    }

    .feature-icon {
        width: 40px;
        height: 40px;
        margin-right: 12px;
    }

    .feature-text h3 {
        font-size: 16px;
    }

    .feature-text p {
        font-size: 13px;
    }

    .login-header h2 {
        font-size: 24px;
    }

    .login-header p {
        font-size: 14px;
    }

    .input-group input {
        padding: 14px 20px;
        font-size: 15px;
    }

    .password-container input {
        padding: 14px 45px 14px 20px;
    }

    .remember-forgot {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .login-btn {
        padding: 14px;
        font-size: 16px;
    }

    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .circle-1, .circle-2 {
        display: none;
    }
}

@media (max-width: 400px) {
    .container {
        border-radius: 12px;
    }

    .hero-content h2 {
        font-size: 22px;
    }

    .hero-content p {
        font-size: 15px;
        margin-bottom: 30px;
    }

    .login-header h2 {
        font-size: 22px;
    }

    .input-group label {
        font-size: 14px;
    }

    .remember label, .forgot-password, .signup-link p {
        font-size: 14px;
    }

    .social-text {
        font-size: 14px;
    }
}



.hero-content h2 {
    font-size:36px;
    margin-bottom: 20px;
    line-height: 1.2;
    animation-delay: 0.2s;
}

.hero-content p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 40px;
    line-height: 1.6;
    animation-delay: 0.4s;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 40px;
    animation-delay: 0.6s;
}

.feature-card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    padding: 20px;
    display: flex;
    align-items: center;
    transition: all 0.4s ease;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

    .feature-card:nth-child(1) {
        animation-delay: 0.2s;
    }

    .feature-card:nth-child(2) {
        animation-delay: 0.3s;
    }

    .feature-card:nth-child(3) {
        animation-delay: 0.4s;
    }

    .feature-card:nth-child(4) {
        animation-delay: 0.5s;
    }

    .feature-card:hover {
        transform: translateY(-5px);
        background: rgba(255, 255, 255, 0.12);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }

.feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    position: relative;
}

    .feature-icon i {
        font-size: 22px;
        z-index: 2;
    }

.icon-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    opacity: 0.2;
}



.feature-text p {
    font-size: 14px;
    opacity: 0.8;
    margin: 0;
}

/* Animations for icons */
.visa-request .icon-bg {
    background: #4a9fe3;
    animation: pulse-blue 3s infinite;
}

.upload .icon-bg {
    background: #4caf50;
    animation: pulse-green 3s infinite;
}

.cancellation .icon-bg {
    background: #e0e0e0;
    animation: pulse-red 3s infinite;
}

.verification .icon-bg {
    background: #ff9800;
    animation: pulse-orange 3s infinite;
}

.visa-request i {
    color: #4a9fe3;
    animation: float 4s ease-in-out infinite;
}

.upload i {
    color: #4caf50;
    animation: bounce 2s ease infinite;
}

.cancellation i {
    color: #fff;
    animation: shake 3s ease infinite;
}

.verification i {
    color: #ff9800;
    animation: spin 6s linear infinite;
}

/* Login Section */
.login-section {
    flex:0.7;
    background: #fff;
    padding: 40px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    animation: slideInRight 1.2s ease-out forwards;
}

.login-container {
    max-width: 400px;
    margin: 0 auto;
    width: 100%;
}

.login-header {
    text-align: center;
    margin-bottom: 40px;
    animation: fadeIn 0.8s ease-out forwards;
    animation-delay: 0.4s;
}

    .login-header h2 {
        font-size: 32px;
        color: #1c405f;
        margin-bottom: 10px;
    }

    .login-header p {
        color: #666;
        font-size: 16px;
    }

/* Password Reset Form */
.reset-form {
    width: 100%;
}

.reset-steps {
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    position: relative;
}

    .reset-steps::before {
        content: "";
        position: absolute;
        top: 20px;
        left: 0;
        right: 0;
        height: 3px;
        background: #e0e7ff;
        z-index: 1;
    }

.step {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 33.33%;
}

.step-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e0e7ff;
    color: #1c405f;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.step.active .step-circle {
    background: #1c405f;
    color: white;
    transform: scale(1.1);
}

.step-label {
    font-size: 13px;
    color: #666;
    font-weight: 500;
    transition: all 0.3s ease;
}

.step.active .step-label {
    color: #1c405f;
    font-weight: 600;
}

.form-group {
    margin-bottom:5px;
    position: relative;
    animation: fadeIn 0.8s ease-out forwards;
}

    .form-group label {
        display: block;
        margin-bottom: 8px;
        color: #1c405f;
        font-weight: 500;
    }

.input-with-icon {
    position: relative;
}

    .input-with-icon input {
        width: 100%;
        padding: 16px 50px 16px 20px;
        border: 2px solid #e0e7ff;
        border-radius: 12px;
        font-size: 16px;
        transition: all 0.3s ease;
        background: #f8faff;
    }

        .input-with-icon input:focus {
            outline: none;
            border-color: #1c405f;
            box-shadow: 0 0 0 4px rgba(28, 64, 95, 0.2);
            transform: scale(1.02);
        }

    .input-with-icon i {
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        color: #aaa;
        font-size: 18px;
    }

.password-toggle {
    position: absolute;
    right: 45px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #aaa;
    font-size: 18px;
    transition: all 0.3s ease;
    z-index: 10;
}

    .password-toggle:hover {
        color: #1c405f;
    }

.form-buttons {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-top:20px;
}

.btn {
    padding: 14px 25px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    flex: 1;
}

.btn-primary {
    background: #1c405f;
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(28, 64, 95, 0.3);
}

    .btn-primary:hover {
        background: #15314d;
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(28, 64, 95, 0.4);
    }

.btn-secondary {
    background: #f8faff;
    color: #1c405f;
    border: 1px solid #e0e7ff;
}

    .btn-secondary:hover {
        background: #e0e7ff;
        transform: translateY(-3px);
    }

.step-content {
    display: none;
}

    .step-content.active {
        display: block;
    }

.circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: circleFloat 15s infinite ease-in-out;
}

.circle-1 {
    width: 300px;
    height: 300px;
    background: #4a9fe3;
    top: -100px;
    right: -100px;
    animation-duration: 20s;
}

.circle-2 {
    width: 200px;
    height: 200px;
    background: #ff6b6b;
    bottom: -80px;
    left: -80px;
    animation-duration: 25s;
}

.circle-3 {
    width: 150px;
    height: 150px;
    background: #ff9800;
    top: 50%;
    left: 50%;
    animation-duration: 30s;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

@keyframes shake {
    0%, 100% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(5deg);
    }

    75% {
        transform: rotate(-5deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes pulse-blue {
    0%, 100% {
        transform: scale(1);
        opacity: 0.2;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.3;
    }
}

@keyframes pulse-green {
    0%, 100% {
        transform: scale(1);
        opacity: 0.2;
    }

    50% {
        transform: scale(1.15);
        opacity: 0.3;
    }
}

@keyframes pulse-red {
    0%, 100% {
        transform: scale(1);
        opacity: 0.2;
    }

    50% {
        transform: scale(1.25);
        opacity: 0.3;
    }
}

@keyframes pulse-orange {
    0%, 100% {
        transform: scale(1);
        opacity: 0.2;
    }

    50% {
        transform: scale(1.18);
        opacity: 0.3;
    }
}

@keyframes logoPulse {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.02);
    }
}

@keyframes iconSpin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(28, 64, 95, 0.3);
    }

    50% {
        transform: scale(1.02);
        box-shadow: 0 4px 20px rgba(28, 64, 95, 0.4);
    }
}

@keyframes circleFloat {
    0%, 100% {
        transform: translate(0, 0);
    }

    25% {
        transform: translate(5px, 5px);
    }

    50% {
        transform: translate(10px, 0);
    }

    75% {
        transform: translate(5px, -5px);
    }
}

/* Responsive */
@media (max-width: 900px) {
    .container {
        flex-direction: column;
        height: auto;
        max-height: none;
    }

    .hero-section {
        padding: 40px 25px;
        order: 2;
        border-radius: 0 0 25px 25px;
    }

    .login-section {
        padding: 50px 30px;
        border-radius: 25px 25px 0 0;
    }

    .hero-content h2 {
        font-size: 32px;
    }

    .circle-3 {
        display: none;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .logo-icon {
        width: 45px;
        height: 45px;
    }

    .logo h1 {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .container {
        border-radius: 20px;
    }

    .login-section {
        padding: 40px 25px;
    }

    .hero-section {
        padding: 35px 20px;
    }

    .hero-content h2 {
        font-size: 28px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .step-label {
        font-size: 12px;
    }
}

@media (max-width: 576px) {
    body {
        padding: 10px;
    }

    .container {
        border-radius: 15px;
        height: auto;
        
    }

    .login-section, .hero-section {
        padding: 30px 20px;
    }

    .hero-content h2 {
        font-size: 24px;
    }

    .logo-icon {
        width: 40px;
        height: 40px;
    }

    .logo h1 {
        font-size: 22px;
    }

    .feature-card {
        padding: 15px;
    }

    .feature-icon {
        width: 40px;
        height: 40px;
        margin-right: 12px;
    }

    .feature-text h3 {
        font-size: 16px;
    }

    .feature-text p {
        font-size: 13px;
    }

    .form-buttons {
        flex-direction: column;
    }

    .circle-1, .circle-2 {
        display: none;
    }
}

@media (max-width: 400px) {
    .container {
        border-radius: 12px;
    }

    .hero-content h2 {
        font-size: 22px;
    }

    .hero-content p {
        font-size: 15px;
        margin-bottom: 30px;
    }

    .step-circle {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }

    .step-label {
        font-size: 11px;
    }
}

