@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500&display=swap');

body{
    font-family: 'Poppins', sans-serif;
    background: #ececec;
}

/*------------ Login container ------------*/

.box-area{
    width: 930px;
}

/*------------ Right box ------------*/

.right-box{
    padding: 40px 30px 40px 40px;
}

/*------------ 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;
     }

}
.tab-toggle {
        display: flex;
        justify-content: center;
        margin-bottom: 2rem;
        position: relative;
    }

    .tab-toggle input[type="radio"] {
        display: none;
    }

    .tab-toggle label {
        padding: 5px 30px;
        background: #f1f1f1;
        border: 1px solid #103cbe;
        color: #103cbe;
        cursor: pointer;
        transition: 0.3s;
        font-weight: 500;
    }

    .tab-toggle label:first-of-type {
        border-right: none;
        border-top-left-radius: 25px;
        border-bottom-left-radius: 25px;
    }

    .tab-toggle label:last-of-type {
        border-left: none;
        border-top-right-radius: 25px;
        border-bottom-right-radius: 25px;
    }

    .tab-toggle input[type="radio"]:checked + label {
        background: #103cbe;
        color: #fff;
        z-index: 1;
    }