/* Styles for the login page */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: #fff;
    color: #000;
}

.container {
    border: 4px solid #000;
    padding: 20px;
    width: 100%;
    max-width: 420px;
    padding: 2.5rem 2rem;
}

h1 {
    text-align: center;
    margin-bottom: 20px;
    color: gold;
}

.form-row {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.form-row label {
    margin-bottom: 5px;
}

.form-second-row {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    justify-content: space-between;
}

.field {
    flex: 1;
    padding: 5px;
    border-radius: 5px;
}

#showPassword {
    margin-right: 10px;
    cursor: pointer;
}

.options-row button {
    padding: 5px 15px;
    cursor: pointer;
    border-radius: 5px;
}

.links-row a {
    text-decoration: underline;
    color: navy;
}