body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background: #fff5f5;
    color: #2e2e2e;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px;
}



.form-box, .content-box {
    background: #ffe0e0;
    border: 1px solid #ff4d4d;
    border-radius: 10px;
    padding: 25px;
    width: 90%;
    max-width: 500px;
    margin-bottom: 30px;
    box-shadow: 0 4px 8px rgba(255, 77, 77, 0.3);
}

h2, h3 {
    color: #b30000;
    margin-bottom: 20px;
    text-align: center;
}

.form-group {
    margin-bottom: 15px;
}

label {
    display: block;
    margin-bottom: 6px;
    color: #660000;
}

select, input[type="submit"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #cc0000;
    border-radius: 6px;
    background: #fff0f0;
    font-size: 16px;
}

input[type="submit"] {
    background-color: #ff3333;
    color: white;
    cursor: pointer;
    transition: background 0.3s ease;
}

input[type="submit"]:hover {
    background-color: #cc0000;
}

ul {
    list-style-type: disc;
    padding-left: 20px;
}


    .home-button {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 12px 24px;
        margin-top: 40px;
        background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
        color: #fff;
        text-decoration: none;
        border-radius: 50px;
        font-size: 18px;
        font-weight: 600;
        box-shadow: 0 4px 15px rgba(0, 153, 255, 0.3);
        transition: all 0.3s ease-in-out;
        cursor: pointer;
    }

    .home-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(0, 153, 255, 0.4);
        background: linear-gradient(135deg, #00f2fe 0%, #4facfe 100%);
    }

    .home-icon {
        font-size: 20px;
    }

