body {
    font-family: 'Poppins', sans-serif;
    background-color: #f5f7fa;
}

.otp-box {
    max-width: 420px;
    width: 100%;
    animation: fadeInUp 0.8s ease-in-out;
}

.form-label {
    font-weight: 600;
}

.form-control:focus {
    box-shadow: 0 0 8px rgba(42, 82, 152, 0.4);
    border-color: #2a5298;
}

.error-msg {
    color: red;
    text-align: center;
    margin-top: 1rem;
}

.otp-section {
    display: none;
    animation: fadeIn 0.5s ease-in-out forwards;
}

.otp-visible .otp-section {
    display: block !important;
}

button {
    transition: all 0.3s ease;
}

    button:hover {
        transform: scale(1.03);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }

.image-side {
    background-color: #000;
    overflow: hidden;
    position: relative;
}

    .image-side img {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        z-index: 1;
        opacity: 0.55;
        filter: contrast(1.05) saturate(1.1);
    }

    .image-side .overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to bottom right, rgba(30, 60, 114, 0.5), rgba(42, 82, 152, 0.5));
        z-index: 2;
    }

    .image-side .position-relative {
        z-index: 3;
        animation: fadeInDown 1s ease-in-out;
    }

.logo {
    transition: transform 0.3s ease;
}

    .logo:hover {
        transform: scale(1.05) rotate(-1deg);
    }

/* Animations */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: scale(0.98);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}
.btn-gradient-primary {
    background: linear-gradient(to right, #1e3c72, #2a5298);
    color: #fff;
    border: none;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .btn-gradient-primary:hover {
        transform: scale(1.04);
        box-shadow: 0 6px 18px rgba(30, 60, 114, 0.3);
    }

.btn-gradient-success {
    background: linear-gradient(to right, #28a745, #218838);
    color: #fff;
    border: none;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .btn-gradient-success:hover {
        transform: scale(1.04);
        box-shadow: 0 6px 18px rgba(40, 167, 69, 0.3);
    }
.logo-wrapper {
   /* background: linear-gradient(135deg, #1e3c72, #2a5298);*/
    padding: 12px;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

    .logo-wrapper:hover {
        transform: scale(1.05);
    }

.logo {
    width: 60px;
    height: auto;
}
footer {
    font-family: 'Poppins', sans-serif;
    background-color: #fff;
    border-top: 1px solid #ddd;
    z-index: 1050;
}
