/* This file contains the CSS styles for the secure form, defining the layout and appearance of the form elements. */

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #9224C;
    padding: 20px;
    position: relative;
}

.container {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
}

.logo {
    max-width: 300px;
    margin-bottom: 20px;
}

h1 {
    margin-bottom: 20px;
    text-align: center;
    color: #333;
}

form {
    display: flex;
    flex-direction: column;
}

label {
    display: block;
    margin: 10px 0 5px;
    font-weight: bold;
}

input[type="text"],
input[type="file"],
button {
    margin-bottom: 10px;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

button {
    background-color: #F27AD2;
    color: #fff;
    border: none;
    cursor: pointer;
}

button:hover {
    background-color: #E06BB8;
}

@media (max-width: 600px) {
    .container {
        padding: 15px;
    }

    input[type="text"],
    input[type="file"],
    button {
        font-size: 14px;
        padding: 8px;
    }
}

/* Cross-hatched bands in the corner */
.corner-bands {
    position: absolute;
    top: 0;
    left: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, #F3BD47 25%, transparent 25%, transparent 50%, #F3BD47 50%, #F3BD47 75%, transparent 75%, transparent),
                linear-gradient(45deg, #6160C 25%, transparent 25%, transparent 50%, #6160C 50%, #6160C 75%, transparent 75%, transparent),
                linear-gradient(45deg, #F27AD2 25%, transparent 25%, transparent 50%, #F27AD2 50%, #F27AD2 75%, transparent 75%, transparent);
    background-size: 20px 20px;
    opacity: 0.5;
}