.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: linear-gradient(180deg, #0088cc 0%, #005f8f 100%);
    /* Telegram-ish Blue Gradient */
    font-family: 'Roboto', sans-serif;
}

.logo {
    width: 200px;
    /* Adjust as per actual logo size */
    margin-bottom: 30px;
}

.card {
    background: white;
    padding: 30px 40px;
    border-radius: 4px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 90%;
    max-width: 600px;
}

.title {
    color: #0088cc;
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 500;
}

.subtitle {
    color: #333;
    font-size: 14px;
    margin-bottom: 25px;
}

.resend {
    color: #0088cc;
    cursor: pointer;
    text-decoration: none;
    margin-left: 5px;
}

.resend:hover {
    text-decoration: underline;
}

.otpContainer {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.otpInput {
    width: 45px;
    height: 45px;
    font-size: 20px;
    text-align: center;
    border: 1px solid #ccc;
    border-radius: 2px;
}

.otpInput:focus {
    outline: none;
    border-color: #0088cc;
    box-shadow: 0 0 3px rgba(0, 136, 204, 0.5);
}