* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    min-height: 100%;
}

body {
    font-family: Arial, sans-serif;
    min-height: 100dvh;
    padding: 20px;
    background-color: #F5EEE1;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.form-container {
    width: 100%;
    max-width: 400px;
    margin-top: 40px;
    padding: 20px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

h2 {
    margin: 0 0 20px;
    padding-bottom: 10px;
    text-align: center;
    border-bottom: 2px solid #ccc;
}

label {
    display: block;
    margin-bottom: 5px;
}

input[type="password"] {
    width: 100%;
    margin: 10px 0 20px;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

input[type="submit"] {
    width: 100%;
    padding: 12px;
    background-color: #4CAF50;
    color: #fff;
    border: 0;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

input[type="submit"]:hover {
    background-color: #45a049;
}

input[type="submit"]:focus-visible,
input[type="password"]:focus-visible {
    outline: 2px solid #552B00;
    outline-offset: 2px;
}

.language-switch {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 10px;
}

.language-switch img {
    display: block;
    width: 35px;
    height: 22px;
    margin-left: 10px;
    cursor: pointer;
}