body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #F5F5F5;
}

header {
    background-color: #333;
    color: white;
    padding: 15px;
}

.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

button {
    background-color: #ffdd57;
    border: none;
    color: #333;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 16px;
}

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

.login__container {
    max-width: 400px;
    margin: 50px auto;
    padding: 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    text-align: center; 
}

h2 {
    color: #333;
    margin-bottom: 20px;
}

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

label {
    margin-bottom: 5px;
    width: 100%; 
    text-align: left;
    color: #555;
}

input {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    transition: border-color 0.3s;
}

input:focus {
    border-color: #007bff;
    outline: none;
}

button[type="submit"] {
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%; 
}

button[type="submit"]:hover {
    background-color: #0056b3;
}

#message {
    margin-top: 20px;
    font-size: 16px;
}


@media (max-width: 600px) {
    .login__container {
        margin: 20px;
        padding: 15px;
    }

    header {
        padding: 10px;
    }
}


button[type="submit"] {
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
    margin-bottom: 10px;
}

button[type="submit"]:hover {
    background-color: #0056b3;
}

#cancelButton {
    background-color: #6c757d; 
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
}

#cancelButton:hover {
    background-color: #5a6268;
}

#backButton {
    background-color: #dc3545; 
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
    margin-top: 10px;
}

#backButton:hover {
    background-color: #c82333;
}
