/* ========== Basic Reset ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ========== Page Styling ========== */
body {
    font-family: "Segoe UI", Arial, sans-serif;
    background: linear-gradient(135deg, #e3f2fd, #ffffff);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ========== Form Container ========== */
.form-container {
    background: #fff;
    width: 90%;
    max-width: 400px;
    padding: 25px 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.form-container h2 {
    text-align: center;
    color: #333;
    margin-bottom: 10px;
}

.form-container p {
    text-align: center;
    color: #666;
    margin-bottom: 20px;
    font-size: 14px;
}

/* ========== Inputs & Selects ========== */
label {
    display: block;
    font-weight: 600;
    margin-bottom: 5px;
    color: #444;
}

input,
select {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 15px;
    transition: all 0.3s ease;
}

input:focus,
select:focus {
    border-color: #007bff;
    outline: none;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.3);
}

/* ========== Buttons ========== */
button {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s ease;
}

/* Submit Button */
button[type="submit"] {
    background-color: #007bff;
    color: white;
}

button[type="submit"]:hover {
    background-color: #0056b3;
}

/* Credit Check Button */
.credit-btn {
    background-color: #e9ecef;
    color: #000;
    margin-bottom: 10px;
}

.credit-btn:hover {
    background-color: #d6d8db;
}

/* ========== Responsive ========== */
@media (max-width: 500px) {
    .form-container {
        width: 95%;
        padding: 20px;
    }

    button {
        font-size: 15px;
    }
}
.credit-section {
    margin-top: 15px;
}

.credit-section label {
    display: block;
    font-weight: 600;
    color: #444;
    margin-bottom: 6px;
}

.credit-btn {
    background-color: #e9ecef;
    color: #000;
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.credit-btn:hover {
    background-color: #d6d8db;
}