/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* Body Styling with Background Image */
body {
    background: url('premium_photo-1661877737564-3dfd7282efcb.jpg') no-repeat center center fixed;
    background-size: cover;
    color: #fff;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 20px;
}

/* Overlay to Improve Readability */
.overlay {
    background: rgba(0, 0, 0, 0.6);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

/* Container Styling */
.container {
    max-width: 600px;
    background: rgba(255, 255, 255, 0.9); /* Light background with slight transparency */
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
    margin-bottom: 20px;
}

/* Form Titles */
h2 {
    color: #0056b3;
    margin-bottom: 15px;
}

/* Labels */
label {
    display: block;
    margin-top: 10px;
    font-weight: bold;
    color: #333;
}

/* Input Fields */
input[type="text"],
textarea,
select {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
    transition: 0.3s ease-in-out;
}

/* Input Focus Effect */
input:focus,
textarea:focus,
select:focus {
    border-color: #0056b3;
    outline: none;
}

/* Submit Button */
button {
    width: 100%;
    padding: 12px;
    margin-top: 15px;
    background-color: #0056b3;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: 0.3s ease;
}

button:hover {
    background-color: #004494;
}

/* Response Messages */
#responseMessage, #fraudCheckMessage {
    margin-top: 15px;
    padding: 10px;
    text-align: center;
    border-radius: 4px;
    font-weight: bold;
}

.success {
    background-color: #dff0d8;
    color: #3c763d;
}

.error {
    background-color: #f2dede;
    color: #a94442;
}

