/* General Container */
.form-container {
    max-width: 480px;
    margin: 5vh auto;
    padding: 2.5rem 2rem;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Heading */
.form-title {
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 2rem;
    color: #111827; /* gray-900 */
}

/* Form fields */
.form p {
    margin-bottom: 1.2rem;
    display: flex;
    flex-direction: column;
}

.form label {
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 0.4rem;
    color: #374151; /* gray-700 */
}

.form input {
    padding: 0.75rem;
    border: 1px solid #d1d5db; /* gray-300 */
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form input:focus {
    outline: none;
    border-color: #3b82f6; /* blue-500 */
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}

/* Button */
.btn-submit {
    width: 100%;
    background-color: #3b82f6; /* blue-500 */
    color: #fff;
    padding: 0.75rem;
    font-size: 1rem;
    font-weight: 500;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.1s ease;
}

.btn-submit:hover {
    background-color: #2563eb; /* blue-600 */
}

.btn-submit:active {
    transform: scale(0.98);
}

/* Footer */
.form-footer {
    margin-top: 1.5rem;
    text-align: center;
    font-size: 0.95rem;
    color: #374151;
}

.form-footer a {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 500;
}

.form-footer a:hover {
    text-decoration: underline;
}

/* Responsive Adjustments */
@media (max-width: 600px) {
    .form-container {
        padding: 2rem 1.2rem;
        margin: 3vh auto;
    }

    .form-title {
        font-size: 1.75rem;
    }

    .btn-submit {
        font-size: 0.95rem;
        padding: 0.6rem;
    }
}
