@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');

/* Add the custom CSS here */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #f3f3f3;
    padding: 20px;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #fff;
    border-radius: 15px;
    padding: 20px;
    max-width: 100%;
    max-height: 350px;
    margin-bottom: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

.line {
    width: 90%;
    background-color: #ddd;
    height: 1px;
    margin-bottom: 10px;
}

.qr-box {
    display: flex;
    background: #e6f0f9;
    border-radius: 8px;
    justify-content: center;
    padding: 20px;
    width: 100%;
    margin-bottom: 10px;
}

.qr-box canvas {
    display: block;
    border-radius: 8px;
    margin: 0 auto;
}

.otp-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 100%;
}

.verification-code {
    display: flex;
    justify-content: center;
    direction: ltr;
}

.verification-code--inputs input[type=text] {
    border: 2px solid #e1e1e1;
    width: 46px;
    height: 46px;
    padding: 10px;
    text-align: center;
    box-sizing: border-box;
    border-radius: 8px;
    transition: border-color 0.3s ease;
}

.verification-code--inputs input[type=text]:focus {
    border-color: #007bff;
    outline: none;
}
