﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: #f4eab8;
    color: #3a2e0f;
}

.container {
    max-width: 1200px;
    margin: auto;
    background: #f4eab8;
    /* border: 1px solid #999;*/
}

/* Header Container */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: #efe2a3;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

/* Logo */
.logo img {
    max-width: 160px;
    width: 100%;
    height: auto;
}

/* Right Section */
.header-right {
    display: flex;
    align-items: center;
}

.btn {
    background: #1e73be;
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    text-decoration: none;
    display: inline-block;
    margin-top: 10px;
    font-size: 18px;
}

/* Responsive - Tablet */
@media (max-width: 992px) {
    .logo img {
        max-width: 130px;
    }
}

/* Responsive - Mobile */
@media (max-width: 576px) {
    .header {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .header-right {
        width: 100%;
        justify-content: center;
    }

    .android-btn {
        width: 80%;
        text-align: center;
    }
}

.center-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* ===== OTP CARD ===== */
.otp-card {
    max-width: 420px;
    margin: 50px auto;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    overflow: hidden;
}

.otp-header {
    background: linear-gradient(90deg, #8e24aa, #9c27b0);
    color: #fff;
    padding: 15px;
    text-align: center;
    font-weight: bold;
}

.otp-body {
    padding: 25px;
}

.form-control {
    height: 45px;
    border-radius: 8px;
}

.btn-send {
    background: linear-gradient(135deg, #ff9800, #ffc107);
    border: none;
    font-weight: bold;
    height: 45px;
}

.btn-verify {
    background: linear-gradient(135deg, #00c853, #64dd17);
    border: none;
    font-weight: bold;
    height: 45px;
}

.otp-inputs {
    display: flex;
    justify-content: center; /* center me laayega */
    gap: 6px; /* yahan value kam/zyada karke space control karo */
}

    .otp-inputs input {
        width: 45px;
        height: 50px;
        text-align: center;
        font-size: 20px;
        border-radius: 8px;
        border: 1px solid #ccc;
        text-align: center;
    }

.timer {
    text-align: center;
    margin-top: 10px;
    font-size: 13px;
}

/* ===== RESPONSIVE ===== */
@media(max-width: 576px) {
    .otp-card {
        margin: 20px;
    }

    .otp-inputs input {
        height: 45px;
        font-size: 16px;
    }
}
