@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;600&display=swap');

body {
    font-family: 'Orbitron', sans-serif;
    background: url('https://miro.medium.com/1*48OuLkZ0gw5_uXIuO5XjEQ.jpeg') no-repeat fixed; /* #2E416EFF */
    background-size: cover;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

form {
    background: linear-gradient(rgba(55, 110, 93, 0.85), rgba(14, 63, 73, 0.8));
    padding: 2.25rem;
    border-radius: 1.5rem;
    width: 450px;
    box-shadow: 0 0 65px #cfa376;
    display: flex;
    flex-direction: column;
    align-items: center;
}

h1 {
    text-align: center;
    margin-bottom: 1rem;
}

label {
    display: block;
    margin-top: 1rem;
    font-weight: bold;
}

input, select {
    width: 100%;
    padding: 0.85rem;
    margin-top: 0.1rem;
    border: none;
    border-radius: 1rem;
    background-color: rgba(0, 0, 0, 0.45);
    color: rgba(255, 255, 255, 0.75);
}

.checkbox {
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    font-size: 0.75rem;
    cursor: crosshair;
    margin-top: 1.5rem;
}

button {
    margin-top: 2.5rem;
    width: 65%;
    padding: 2rem;
    background: #b5895b;
    color: white;
    font-weight: bold;
    border: 2px dashed #cfa376;
    border-radius: 1rem;
    transition: ease-in-out 0.3s;
}

button:hover {
    background: #e6c29e;
    color: black;
    border: 2px dashed #38588e;
}