* {
    box-sizing: border-box;
}
body {
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0,0,0,0.03);
    margin: 0;
    height: 100dvh;
    font-family: 'Inter';
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

section {
    width: 90%;
    padding: 20px;
    background: white;
    border-radius: 20px;
    max-width: 400px;
    box-shadow: 0px 0px 10px 5px rgba(0,0,0,.05);
}

.alert {
    display: none;
    color: #b90303;
    text-align: center;
    background: rgba(0,0,0,0.05);;
    border-radius:10px;
    padding: 10px;
    margin-bottom: 20px;
    box-shadow: inset 0px 0px 10px 5px rgba(0,0,0,.05);
    
}

img {
    border-radius: 15px;
    width: 60px;
    height: 60px;
    display: block;
    margin: 0 auto;
    margin-bottom: 30px;
}

div.mobile-container {    
    display: none;
}
label {
    color: #afafaf;
    display: block;
    margin-bottom: 10px;
}
input {
    padding: 20px;
    color: grey;
    font-size: 16px;
    border: none;
    background: rgba(0,0,0,0.05);;
    width: 100%;
    margin-bottom: 30px;
    border-radius: 10px;
    box-shadow: inset 0px 0px 10px 5px rgba(0,0,0,.05);
}
input:focus {
    outline: none;
    border: 2px solid blue;
}

div.otp-container {
    display: none;
}
div.otp-group {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
}
div.otp-group input {
    width: 60px;
    padding: 20px; 
    text-align: center;
}

button {
    padding: 10px;
    border-radius: 5px;
    color: white;
    border: none;
    background: blue;
    width: 100%;
    font-weight: 700;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 700;
    
    cursor: pointer;

    box-shadow: 0 4px 8px rgba(0,0,0,.15);
    transition: transform .1s ease, box-shadow .1s ease;
    
}

button:not(:disabled):hover {
    box-shadow: 0 6px 12px rgba(0,0,0,.2);
}

button:not(:disabled):active {
    transform: translateY(2px) scale(0.98);
    box-shadow: 0 2px 4px rgba(0,0,0,.15);
}
button:not(:disabled):focus {
    box-shadow: 0 6px 12px rgba(0,0,0,.2);
    border: none;
    outline: none;
}
button:disabled {
    background: grey;
    cursor: not-allowed;
    opacity: .6;
}

.show {
    display: block !important;
}