﻿.primary-btn {
    background-color: #3C81F3;
    color: #ffffff;
    text-transform: uppercase;
    padding: 8px 16px;
    border-radius: 5px;
    width: 100%;
    font-size: 15px;
    font-weight: bold;
    position: relative;
    overflow: hidden;
    transition: all 0.2s;
}

    .primary-btn::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background-color: #4EB5F4;
        transform: translateX(-100%);
        transition: transform 0.5s ease-in-out;
        z-index: 1;
    }

    .primary-btn:hover::before {
        transform: translateX(0);
    }

    .primary-btn span {
        position: relative;
        z-index: 2;
    }

.input-field {
    margin-top: 4px;
    display: block;
    width: 100%;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    font-size: 17px;
    color: #1A202D;
    padding: 8px 16px;
    outline: none;
    transition: border-color 0.2s;
}

    .input-field::placeholder {
        color: #9D9D9D;
    }

    .input-field:focus,
    .otp-input:focus {
        border-color: #4EB5F4;
        outline: none;
    }

.forgot-pwd-link {
    font-size: 17px;
    color: #CDCDCD;
    cursor: pointer;
    transition: all 0.3s;
}

    .forgot-pwd-link:hover {
        color: #3C81F3;
    }

.common-card {
    background-color: #1A202D;
    padding: 32px 40px;
    border-radius: 5px;
    box-shadow: 0 0 40px 17px rgba(0, 0, 0, 0.25);
    width: 100%;
    max-width: 500px;
}

.card-title {
    font-size: 30px;
    margin-bottom: 36px;
    text-align: center;
    color: #ffffff;
    font-weight: 700;
}

.otp-input {
    width: 48px;
    height: 48px;
    border: 1px solid #CDCDCD;
    border-radius: 5px;
    text-align: center;
    font-size: 18px;
}

.code-label {
    display: block;
    font-size: 20px;
    font-weight: 400;
    color: #D9F1FF;
    text-align: center;
}

.resend-code-btn {
    font-size: 17px;
    color: #CDCDCD;
}

    .resend-code-btn:hover {
        color: #3C81F3;
    }

    .resend-code-btn:disabled {
        color: #9CA3AF;
    }


container-background {
    background-image: linear-gradient(rgba(255,255,255,0.79), rgba(255,255,255,0.79)), url("./images/page-bg.jpg");
    background-size: 100% 100%;
}

.btn-spinner {
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes bounce1 {
    0%, 80%, 100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-15%);
    }
}

@keyframes bounce2 {
    0%, 80%, 100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-15%);
    }
}

@keyframes bounce3 {
    0%, 80%, 100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-15%);
    }
}

/* stagger the animation delay */
.animate-bounce1 {
    animation: bounce1 1.4s infinite;
    animation-delay: -0.32s;
}

.animate-bounce2 {
    animation: bounce2 1.4s infinite;
    animation-delay: -0.16s;
}

.animate-bounce3 {
    animation: bounce3 1.4s infinite;
}

