body {
    font-family: Arial, sans-serif;
    background-color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.container {
	background: url('../images/jukebox.jpg') no-repeat center center;
    background-size: cover;
    background-color: white;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    text-align: center;
	max-width: 500px;
  	width: 100%;
  	max-height: 600px;
  	height: 100%;
	display: flex;
	flex-direction: column;
  	justify-content: center;
  	align-items: center;
}

h1 {
    margin-bottom: 20px;
}

form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

input[type="text"] {
  padding: 10px;
  margin-right: 10px;
  border: 2px solid #da463c;
  border-radius: 5px;
  margin: 5px;
  background-color: #342613;
  color: #da463c;
}

button {
    padding: 10px 20px;
    background-color: #342613;
    color: white;
    border: none;
	border: 2px solid #da463c;
    border-radius: 5px;
    cursor: pointer;
	margin:5px;
}

button:hover {
    background-color: #20170c;
}

#logo{
	width:40px;
	position:absolute;
	right:20px;
	bottom:20px;
}

#message {
    margin-top: 20px;
    color: #fff;
}
