/* Windows 95 Login Page Styles */
body {
    margin: 0;
    padding: 0;
    background-color: #008080;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "MS Sans Serif", Arial, sans-serif;
    -webkit-font-smoothing: none;
    -moz-osx-font-smoothing: grayscale;
}

.login-window {
    width: 400px;
}

.login-window .title-bar {
    background: linear-gradient(to right, #000080, #1084d0);
    color: white;
    padding: 2px 3px;
    display: flex;
    align-items: center;
    font-weight: bold;
    font-size: 11px;
}

.login-window .title-bar-text {
    flex: 1;
    padding: 2px;
    font-weight: bold;
    -webkit-font-smoothing: none;
}

.login-content {
    padding: 12px;
    color: #000000;
}

.login-message-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.key-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
}

.login-text {
    font-size: 11px;
    line-height: 1.4;
    padding-top: 8px;
    color: #000000;
    font-weight: normal;
}

.login-form {
    margin: 16px 0 20px 60px;
}

.field-row-login {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.field-row-login label {
    width: 80px;
    text-align: right;
    margin-right: 8px;
    font-size: 11px;
    color: #000000;
    font-weight: normal;
}

.field-row-login input {
    width: 180px;
    height: 21px;
    border: 1px solid;
    border-color: #808080 #ffffff #ffffff #808080;
    background: white;
    padding: 2px 3px;
    font-family: "MS Sans Serif", Arial, sans-serif;
    font-size: 11px;
}

.login-buttons {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 16px;
}

.login-buttons button {
    min-width: 75px;
    height: 23px;
    font-size: 11px;
    font-family: "MS Sans Serif", Arial, sans-serif;
    background: #c0c0c0;
    border: 2px solid;
    border-color: #ffffff #808080 #808080 #ffffff;
    padding: 0 12px;
    cursor: pointer;
    color: #000000;
    font-weight: normal;
}

.login-buttons button:active {
    border-color: #808080 #ffffff #ffffff #808080;
}

.login-buttons button:focus {
    outline: 1px dotted #000000;
    outline-offset: -4px;
}

.login-buttons button:disabled {
    color: #808080;
    cursor: default;
}