/* Reset some default styles */
body, h2, form, input, textarea, button {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body styles */
body {
     background: hsl(60, 100%, 70%) url('login.jpg') no-repeat center center/cover;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f2f2f2 ;
}

/* Form container */
div {
    background-color: whitesmoke ;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(92, 1, 1, 0.1);
    width: 100%;
    max-width: 400px;
    text-align: center;
    background: transparent;
}

/* Form title */
h2 {
    margin-bottom: 20px;
    color: #333;
}

/* Form input fields */
input[type="text"], input[type="email"], textarea {
    width: calc(100% - 20px);
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    display: block;
    margin: 10px auto;
}

/* File input */
input[type="file"] {
    margin: 10px auto 20px;
    display: block;
    color: #05b83b;
}

/* Submit button */
button {
    background-color: #008cba;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
}

button:hover {
    background-color: #005f5f;
}

/* Response message */
#response {
    margin-top: 20px;
    color: #ff460e;
}
