.alert-container-code{
    position: fixed;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    top: 0;
    z-index: 10;
    justify-content: center;
    align-items: center;
    gap: 10px;
    display: none;
    opacity: 0;
    transition: all 1s;
}

.code-box{
    width: 100%;
    max-width: 270px;
    height: fit-content;
    background-color: rgb(225, 106, 255);
    border-radius: 17px;
    border-bottom: 4px solid purple;
    box-shadow: 0px 0px 50px 3px rgba(107, 32, 107, 0.726);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: all 0.3s;
    font-family: 'Poppins', sans-serif;
    overflow: hidden;
    padding: 20px;
    gap: 10px;
}

.code-title{
    color: black;
    font-size: 25px;
    font-weight: 600;
}

.code-desc a{
    color: rgb(70, 57, 255);
}

.code-desc{
    color: black;
    font-size: 18px;
    font-weight: 500;
    text-align: center;
    width: 100%;
}

.code-disclaimer{
    font-size: 10px;
    text-align: left !important;
    width: 100%;
}

.code-button {
    width: 100%;
    padding-block: 10px;
    font-size: 14px;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    border: none;
    border: 2px solid black;
    background-color: black;
    color: white;
    cursor: pointer;
    font-weight: 600;
}

.application-container{
    width: 100%;
    height: fit-content;
    /* background-color: red; */
    display: flex;
    justify-content: center;
}

.application{
    max-width: 1000px;
    width: 1000px;
    height: fit-content;
    /* background-color: blue; */
    display: flex;
    align-items: center;
    flex-direction: column;
    font-family: 'Poppins', sans-serif;
    gap: 30px;
    padding-bottom: 50px;
}

.application-type{
    color: white;
    font-weight: 600;
    font-size: 30px;
}

.application-section{
    width: 100%;
    /* background-color: red; */
    display: flex;
    flex-direction: column;
}

.application-section input, .application-section textarea{
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    height: 50px;
    border-radius: 20px;
    border: none;
    background-color: rgb(225, 106, 255);
    color: black;
    outline: none;
    border-bottom: 4px solid purple;
    box-shadow: 0px 0px 50px 3px rgba(128, 0, 128, 0.493);
    font-weight: 500;
    padding-inline: 15px;

}

.application-section textarea{
    max-height: 120px;
    resize: none;
    height: 120px;
    text-indent: 0px !important;
    padding-block: 10px;
}

.application-section span{
    font-size: 25px;
    color: white;
    font-weight: 500;
}

.application-section input::placeholder, .application-section textarea::placeholder{
    color: rgba(0, 0, 0, 0.774);
    font-weight: 500;
}

.application-submit{
    background-color: rgb(225, 106, 255);
    border: none;
    border-bottom: 4px solid purple;
    font-family: 'Poppins', sans-serif;
    text-align: center;
    font-weight: 600;
    font-size: 20px;
    width: 100%;
    padding-block: 15px;
    border-radius: 17px;
    margin-top: 30px;
    cursor: pointer;
}

.application-submit:hover{
    border-bottom: 4px solid transparent;
}

.otp-info{
    font-size: 18px !important;
}

.otp-info a{
    color: aqua;
}


@media screen and (max-width: 1000px) {
    .application{
        padding: 20px;
    }
}
.otpMobile{
        display: none;
}

@media screen and (max-width: 534px){
    .otpMobile{
        display: block;
    }

    .otp{
        margin-top: 10px;
    }

}

