#login-page {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

/* Header */
.login-header {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    z-index: 10;
}

.login-logo {
    margin-left: 30px;
}

/* User button */
.user-button {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: transparent;
    border: 2px solid #212121;
    color: #212121;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

/* Login form */
.login-form {
    position: absolute;
    top: 80px;
    right: 100px;
    width: 350px;
    background: #ffffff;
    padding: 20px;
    font-family: Segoe UI, sans-serif;
}

.hidden {
    display: none;
}

.form-field {
    margin-bottom: 16px;
}

.form-label {
    font-size: 14px;
    font-weight: bold;
}

.form-label-forgot {
    font-size: 12px;
    color: #0f6cbd;
    text-decoration: underline;
    cursor: pointer;
}

.login-button,
.back-button,
.forgot-button {
    background-color: #0f6cbd;
    color: #fff;
}

.login-button {
    width: 100%;
}

.back-button,
.forgot-button {
    width: 45%;
}

/* Background */
.login-background {
    width: 100%;
    min-height: calc(100vh - 120px);
    background-image: url("images/login-background.png");
    background-repeat: no-repeat;
    background-position: left top;
    background-size: auto 100%;
}

/* Footer */
.login-footer {
    position: relative;
    z-index: 10;
    margin-top: -30px;
    padding: 0;
    font-family: Segoe UI, sans-serif;
    font-size: 13px;
}

.login-footer a {
    display: inline-block;
    margin: 0 0 30px 80px;
    color: #0f6cbd;
    text-decoration: none;
}

.login-footer a:hover {
    text-decoration: underline;
}
