body {
    background-color: #f0fff0;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center; 
}

h1 {
    text-align: center;
    margin-bottom: 40px;
}

form {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
    width: 100%;
}

.label-text {
    min-width: 130px;
    text-align: right;
}

label span.red {
    color: red;
}

input[type="text"],
input[type="password"] {
    flex-grow: 1;
    margin-left: 10px;
    width: 140px;
    height: 30px;
    border-radius: 5px;
    border: 1px solid #ccc;
    padding: 0 10px;
}

input[type="submit"] {
    margin-top: 20px;
    align-self: center;
}

input[type="submit"] {
    margin-top: 20px;
    align-self: center;
    width: 160px;
    height: 40px; 
    border-radius: 5px;
    background-color: #4caf50; 
    color: white;
    font-size: 16px;
    cursor: pointer; 
    border: none; 
}

input[type="submit"]:hover {
    background-color: #ff6347;
}

input[type="button"] {
    margin-top: 20px;
    align-self: center;
}

input[type="button"] {
    margin-top: 20px;
    align-self: center;
    width: 160px;
    height: 40px; 
    border-radius: 5px;
    background-color: #ff6347; 
    color: white;
    font-size: 16px;
    cursor: pointer; 
    border: none; 
}

input[type="button"]:hover {
    background-color: #ff6347;
}



@media screen and (max-width: 600px) {
    label {
        flex-wrap: wrap;
    }
}
