* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;

    --theme-color: #f5c75d;
}

.small{
    color: rgb(64, 64, 64);
}

.logo{
    width: 400px; 
    display: block; 
    margin-left: auto; 
    margin-right: auto;
    margin-bottom: 50px;
}

body {
    font-family: Arial, sans-serif;
    background-size: cover; 
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100vw;
}

.login-container {
    background-color: #f8f8f8;
    padding: 50px 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    width: 600px;
}

.otp-container-wrap{
    width: 100%;
    display: flex;
    justify-content: center;
}

.otp-container{
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
    width: 450px;
}

.otp-container .otp-input {
    width: 65px;
    height: 75px;
    font-size: 30px;
    text-align: center;
}

@media screen and (max-width: 700px) {
    .login-container {
        width: 100%;
        height: 100%;
        padding: 30px 20px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }   
    .logo{
        width: 100%;
    }
}