/* Modern HDFC KYC Styling */
body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    min-height: 100vh;
    background: linear-gradient(135deg, #934D04 0%, #D17300 100%);
    position: relative;
    padding: 20px;
    color: #222;
}

body::before {
    content: "";
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    background-image: repeating-linear-gradient(0deg, rgba(255,255,255,0.03) 0px, rgba(255,255,255,0.03) 1px, transparent 1px, transparent 32px),
                      repeating-linear-gradient(90deg, rgba(255,255,255,0.03) 0px, rgba(255,255,255,0.03) 1px, transparent 1px, transparent 32px);
    pointer-events: none;
    z-index: 0;
}

#app {
    max-width: 420px;
    margin: 40px auto;
    background: #FAF3E6;
    padding: 2.5em 1.5em;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(109, 60, 0, 0.18);
    position: relative;
    z-index: 1;
}

#logo {
    display: block;
    width: 90px;
    height: auto;
    margin: 0 auto 1.2em auto;
    border-radius: 4px;
}

h2, h1 {
    text-align: center;
    color: #6D3C00;
    margin-bottom: 1.5em;
    font-size: 1.7em;
}

label {
    color: #6D3C00;
    font-weight: 600;
    margin-bottom: 0.3em;
    display: block;
}

input, select {
    width: 100%;
    padding: 0.8em;
    border: 2px solid #F5DDB3;
    border-radius: 6px;
    font-size: 1em;
    background: #FAF3E6;
    color: #6D3C00;
    margin-bottom: 1em;
    transition: border-color 0.3s ease;
}
input:focus, select:focus {
    outline: none;
    border-color: #D17300;
}

button {
    width: 100%;
    background: linear-gradient(135deg, #00728A 0%, #1de83d 100%);
    color: white;
    border: none;
    padding: 1em 2em;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 114, 138, 0.18);
    margin: 1.2em 0 0.5em 0;
}
button:disabled {
    background: #F5DDB3;
    color: #934D04;
    cursor: not-allowed;
    box-shadow: none;
    opacity: 0.7;
}
button:not(:disabled):hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 114, 138, 0.22);
}

.card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    padding: 1.5em;
    margin-bottom: 1.5em;
}

video {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    background: #000;
    margin-bottom: 1em;
}

@media (max-width: 600px) {
    body {
        padding: 10px;
    }
    #app {
        padding: 1.2em 0.5em;
        margin: 10px auto;
    }
    h2, h1 {
        font-size: 1.2em;
    }
}
