/* Global reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Background */
body {
    background: linear-gradient(135deg, #eef2f3, #dfe9f3);
    font-family: 'Inter', Arial, sans-serif;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 20px;
}

/* Main card container */
.container {
    width: 100%;
    max-width: 700px;
    background: white;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    animation: fadeIn 0.6s ease-in-out;
}

/* Title */
h2 {
    text-align: center;
    font-size: 28px;
    color: #222;
    margin-bottom: 5px;
    font-weight: 700;
}

/* Subtitle */
.subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 25px;
    font-size: 15px;
}

/* Labels */
label {
    font-weight: bold;
    margin-top: 20px;
    display: block;
    font-size: 15px;
    color: #333;
}

/* Inputs & Textareas */
textarea, input {
    width: 100%;
    padding: 14px 16px;
    margin-top: 8px;
    border: 2px solid #e3e6eb;
    border-radius: 12px;
    font-size: 15px;
    transition: 0.2s ease;
    background: #fafafa;
}

textarea:focus, input:focus {
    border-color: #007bff;
    background: white;
    outline: none;
    box-shadow: 0 0 4px rgba(0,123,255,0.3);
}

/* Button */
button {
    background: #005ce6;
    color: white;
    border: none;
    padding: 16px;
    width: 100%;
    margin-top: 30px;
    font-size: 17px;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: 0.25s ease;
}

button:hover {
    background: #004ed1;
    transform: translateY(-2px);
}

button:active {
    transform: translateY(1px);
}

/* Fade-in animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .container {
        padding: 25px;
        border-radius: 15px;
    }

    h2 {
        font-size: 24px;
    }

    textarea, input {
        font-size: 14px;
        padding: 12px;
    }

    button {
        padding: 14px;
        font-size: 16px;
    }
