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

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 98vh;
    background-color: black;
    color: white;
    font-family: 'Orbitron', sans-serif;
}

.container {
    width: 500px;
    padding: 0 20px;
}

.header-login {
    text-align: center;
}

.header-login:hover {
    text-shadow: 0 2px 3px rgba(0, 0, 0, 0.5);
    transform: scale(1.05);
}

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

label {
    margin-top: 10px;
}

input {
    background-color: black;
    border: 2px solid white;
    color: white;
    padding: 10px;
    margin: 5px 0;
    width: 230px;
    box-sizing: border-box;
}

button {
    background-color: transparent;
    border: 2px solid white;
    color: white;
    padding: 10px 20px;
    font-family: 'Orbitron', sans-serif;
    cursor: pointer;
    margin-top: 20px;
}

button:hover {
    background-color: white;
    color: black;
}

.inline{
    display: flex;
    height: auto;
}

.inline .parcel{
    padding: 0 10px;
    width: 250px;
}
