body {
    background-image: 
    linear-gradient(rgba(255, 255, 255, 0.8), rgba(34, 46, 61, 0.8)), 
    url('../img/background.jpg');
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    font-family: "Spline Sans", sans-serif;
    color: #222E3D;
}

.container {
  display: grid;
  max-width: 600px;
  position: relative;
  margin: auto;
  gap: 10px;
  grid-template-areas:  "header"
                        "body";
  grid-template-columns: 1fr;
  grid-template-rows: auto;
}

header {
    grid-area: header;
    text-align: center;
}

header img {
    width: 100px;
    height: auto;
    margin-top: 10px;
}

.form-wrapper {
    grid-area: body;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    text-align: center;
}

.form-wrapper form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.form-wrapper input,
.form-wrapper button {
    width: 100%;
    max-width: 200px;
}

input {
    padding: 10px;
    border: 1px solid #222E3D;
    border-radius: 5px;
    font-size: 16px;
}

button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #222E3D;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    margin-top: 20px;
    text-align: center;
    box-shadow: 1px 2px 5px rgba(0, 0, 0, 0.9);
    transition: transform 0.1s ease, box-shadow 0.1s ease;
}

button:hover {
    transform: translateY(-2px);
    box-shadow: 1px 4px 10px rgba(0, 0, 0, 0.9);
}

button:active {
    transform: scale(0.95);
    box-shadow: inset 1px 2px 5px rgba(0, 0, 0, 0.9);
}

