body {
    background: linear-gradient(to right, #2c3e50, #4e54c8);
    /* height: 100vh;
    display: flex; */
    margin-top: 30px;
    margin-bottom: 30px;
    padding: 10px;
    justify-content: center;
    align-items: center;
    background-size: 400% 400%;
    animation: wave 10s ease-in-out infinite;
}

/* Keyframes for the waving background effect */
@keyframes wave {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border: none;
}

.card-header {
    background: #4e54c8;
    background: linear-gradient(to right, #4e54c8, #8f94fb);
    color: white;
    text-align: center;
    padding: 10px;
    font-size: 1.5rem;
    font-weight: bold;
}

.form-control:focus {
    box-shadow: none;
    border-color: #6c63ff;
}

.btn-custom {
    background-color: #e74c3c;
    border-color: #e74c3c;
    color: #fff;
}

.btn-custom:hover {
    background-color: #c0392b;
    border-color: #c0392b;
}

.btn-custom2 {
    background-color: #417cd3;
    border-color: #417cd3;
    color: #fff;
}

.btn-custom2:hover {
    background-color: #125ab3;
    border-color: #2b89c0;
}

.nav-pills .nav-link.active {
    background-color: #e74c3c;
}

.nav-pills .nav-link {
    color: #4e54c8;
}

.nav-pills .nav-link:hover {
    color: #e74c3c;
}

.separator {
    border-left: 2px solid #ddd;
    height: 100%;
}

.auth-image {
    /* background-image: url('../assets/images/bg1.jpg') !important; */
    background-size: cover;
    background-position: center;
    height: 100%;
    width: 100%;
}

.separator {
    border-left: 5px solid #ddd;
    height: 440px;
}

/* CSS for Zoom-in Animation */
@keyframes zoomIn {
    0% {
        transform: scale(0.7);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.zoom-in {
    animation: zoomIn 0.5s ease-in-out forwards;
    /* Optional: Set initial state */
    transform: scale(0.7);
    opacity: 0;
}


/* Ensure form adjusts nicely on mobile devices */
@media (max-width: 480px) {
    .card {
        padding: 0px;
        margin-top: 20%;
        margin-bottom: 3%;
    }
    .card-header {
        font-size: 1.2rem;
    }
    .form-control {
        padding: 10px;
    }
}