
body {
    font-family: Arial, sans-serif;
    background-image: url('pictures/bass.jpg');
    background-size:cover;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    color: white;
}

.back-arrow {
    position: absolute;
    top: 20px;
    left: 20px;
}

.back-arrow a {
    text-decoration: none;
    font-size: 20px;
    color: #fff;
}

.container {
    background-color: rgba(45, 45, 45, 0.9);
width: 40%;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding-left: 90px;
    padding-right: 90px;
    padding-bottom: 30px;

}

h1 {
    margin-bottom: 20px;
}

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

}

label {
    margin-bottom: 5px;
}

input {
    margin-bottom: 15px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

button {
    padding: 10px;
    background-color: #8b7f11;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

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