/*@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500&display=swap');*/

body {
    font-family: 'poppins', sans-serif;
    background-image: linear-gradient(#085895, white);
}

.footer {
    background-color: #f8f9fa;
}

.footer .container {
    
    margin: 0 auto;
    text-align: center;
}

/*------------ 2FA container ------------*/
.verify-box-area {
    width: 500px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.verify-box {
    background: white;
    border-radius: 1rem;
    padding: 2rem 1.5rem;
    box-shadow: 0 0 10px rgb(0 0 0 / 0.1);
}

.verify-box img.qrcode {
    width: 250px;
    height: 250px;
    object-fit: cover;
    border-radius: 0.5rem;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.verify-box .inputContainer {
    width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    gap: 13px;
    margin-left: auto;
    margin-right: auto;
}

.verify-box .inputContainer input {
    width: 40px;
    height: 40px;
    text-align: center;
    border-radius: 7px;
    caret-color:green;
    color:green;
    font-size: 16px;
    font-weight: 600;
}

.verify-box .inputContainer input:disabled {
    background: #e6e6e6;
    cursor:not-allowed;
}

.verify-box img.logo {
    width: 25%;
    height: 25%;
    object-fit: cover;
    margin-bottom: 1rem;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.verify-box p {
    font-weight: bold;
    font-size: 13px;
    text-align: center;
}

.verify-box p.custompara {
    font-weight: bold;
    font-size: 13px;
    text-align: center;
    inline-size: 400px;
}


    a.showkey {
        margin-left: 130px;
        margin-right: auto;
    }

.verify-box .btn-primary {
    font-weight: 600;
}

.verify-box .link-btn {
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    color: #3b82f6; /* Tailwind blue-500 */
    cursor: pointer;
    text-decoration: underline;
    text-align: left;
    display: inline;
    transition: color 0.3s ease;
}

.verify-box .link-style-button:hover,
.verify-box .link-style-button:focus {
    color: #1e40af; /* Tailwind blue-800 */
    outline: none;
    text-decoration: none;
}


.verify-box input.form-control {
    font-size: 1.1rem;
    padding: 0.5rem 1rem;
}

/*--------- Recovery Container --------*/

.recovery-box-area {
    width: 400px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.recovery-box {
    background: lightblue;
    border-radius: 1rem;
    padding: 2rem 1.5rem;
    box-shadow: 0 0 10px rgb(0 0 0 / 0.1);
}

.recovery-box img {
    width: 25%;
    height: 25%;
    object-fit: cover;
    margin-bottom: 1rem;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.recovery-box .btn-primary {
    font-weight: 300;
    margin-top:30px;
}

.recovery-box input.form-control {
    font-size: 1.1rem;
    padding: 0.5rem 1rem;
    margin-top:10px;
}

/*------------ Login container ------------*/
.box-area {
    width: 930px;
}
/*------------ Right box ------------*/
.right-box {
    padding: 40px 30px 40px 40px;
}

/*------------ Left box ------------*/
.left-box li {
    list-style: none;
}

/*------------ Custom Placeholder ------------*/
::placeholder {
    font-size: 16px;
}

.rounded-4 {
    border-radius: 20px;
}

.rounded-5 {
    border-radius: 30px;
}

/*------------ For small screens------------*/
@media only screen and (max-width: 768px) {
    .box-area {
        margin: 0 10px;
    }

    .left-box {
        height: 100px;
        overflow: hidden;
    }

    .right-box {
        padding: 20px;
    }
}


