.login-body {
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Ubuntu, sans-serif;
    background: #f5f5f5;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-container {
    width: 100%;
    max-width: 420px;
    padding: 20px;
}

.login-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.login-header {
    background: #f9f9f9;
    padding: 40px 10px;
    text-align: center;
    border-bottom: 1px solid #f0f0f0;
}

.login-logo {
    width: 240px;
    height: auto;
    margin-bottom: 15px;
}

.login-title {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.login-subtitle {
    display: block;
    margin-bottom: 2px;
    color: #555;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -0.5px;
}

.login-form {
    padding: 25px 30px 40px 30px;
}

.login-field {
    margin-bottom: 20px;
}

.login-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.login-input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.login-input:hover {
    border-color: #0066cc;
}

.login-input:focus {
    border-color: #0066cc;
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
    outline: none;
}

.login-button {
    width: 100%;
    padding: 8px 10px;
    background: #0066cc;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 10px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
}

.login-button:hover {
    box-shadow: 0 6px 20px rgba(0, 102, 204, 0.5);
    transform: translateY(-2px);
}

.login-button:active {
    transform: translateY(0);
}

.ui-button.pwa-install-button {
    padding: 7px 10px;
    background: #f7f8fa;
    color: #52606d;
    border: 1px solid #cbd5e1;
    box-shadow: none;
    font-size: 13px;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0;
    margin-top: 12px !important;
}

.ui-button.pwa-install-button:hover {
    background: #eef1f5;
    color: #344054;
    border-color: #98a2b3;
    box-shadow: none;
    transform: none;
}

.ui-button.pwa-install-button.ui-state-disabled {
    transform: none;
}

.pwa-ios-instructions {
    color: #333;
    font-size: 15px;
    line-height: 1.5;
}

.pwa-ios-instructions p {
    margin-top: 0;
}

.pwa-ios-instructions ol {
    margin-bottom: 0;
    padding-left: 22px;
}

.pwa-ios-instructions li {
    margin-bottom: 10px;
}

.login-links {
    text-align: center;
    border-top: 1px solid #f0f0f0;
    padding-top: 20px;
}

.login-link {
    display: inline-block;
    color: #0066cc;
    text-decoration: none;
    font-size: 13px;
    margin: 0 2px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.login-link:hover {
    color: #0052a3;
}

.login-link-separator {
    display: inline-block;
    color: #ddd;
    margin: 0 8px;
}

.login-footer {
    text-align: center;
    margin-top: 30px;
    color: #999;
    font-size: 12px;
    line-height: 1.6;
}