* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: lavender;
}

.otp-container {
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: 400px;
    max-width: 100%;
    text-align: center;
}

h2 {
    margin-bottom: 15px;
    font-size: 24px;
    color: #333;
}

p {
    margin-bottom: 20px;
    font-size: 14px;
    color: #777;
}

.input-field {
    position: relative;
    margin-bottom: 20px;
}

.input-field i {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
}

.input-field input {
    width: 100%;
    padding: 12px 40px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 5px;
    outline: none;
    transition: border-color 0.3s ease;
}

.input-field input:focus {
    border-color: #3498db;
}

.btn.solid {
    width: 100%;
    background-color: #7a1f91;
    color: #fff;
    padding: 12px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn.solid:hover {
    background-color: #2980b9;
}

.resend-otp p {
    font-size: 14px;
    margin-top: 10px;
    color: #333;
}

.resend-otp a {
    color: #3498db;
    text-decoration: none;
}

.resend-otp a:hover {
    text-decoration: underline;
}

.back-to-login {
    margin-top: 15px;
    font-size: 14px;
}

.back-to-login a {
    color: #333;
    text-decoration: none;
}

.back-to-login a:hover {
    text-decoration: underline;
}
        /* Simple styles for demonstration */


        .otp-container {
            background: white;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
            width: 300px;
            text-align: center;
        }

        .input-field {
            margin: 15px 0;
        }

        .input-field input {
            width: 100%;
            padding: 10px;
            border: 1px solid #ccc;
            border-radius: 5px;
        }

        .btn {
            padding: 10px;
            background-color: #7a1f91;
            color: white;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            width: 100%;
        }

        .btn:disabled {
            background-color: #6c757d;
        }

        .resend-otp {
            margin-top: 10px;
        }

        .hidden {
            display: none;
        }