:root {
    --accent: #0F6CBD;
    --bg: #F3F2F1;
    font-family: "Segoe UI Variable", "Segoe UI", system-ui, sans-serif;
}

html,
body {
    height: 100%;
    margin: 0;
    padding: 0;
    background-image: url('photo_2025-12-08_19-23-41.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    
    background-color: #0078d4;
    
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", sans-serif;
}


body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.15);
    z-index: -1;
}

.panel {
    background: white;
    max-width: 440px;
    border-radius: 4px;
    border: 1px solid #e1dfdd;
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.15),
        0 0 1px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
    z-index: 10;
    font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", sans-serif;
}

input {
    width: 100%;
    padding: 12px 0;
    border: none;
    border-bottom: 1px solid #C8C6C4;
    font-size: 16px;
    background: transparent;
    transition: border-bottom-color .3s ease;
    box-sizing: border-box;
    font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", sans-serif;
}

input:focus {
    outline: none;
    border-bottom: 2px solid var(--accent);
}

input::placeholder {
    color: #605E5C;
    font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", sans-serif;
}

button {
    cursor: pointer;
    font-family: inherit;
    border-radius: 4px;
    font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", sans-serif;
}

button.primary {
    background: var(--accent); 
    color: white;
    border: none;
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    border-radius: 4px;
    transition: background-color 0.2s ease;
}

button.primary:hover {
    background-color: #0D5EA6;
}

button.primary:active {
    background-color: #0C5496;
}

button.secondary-button {
    margin-top: 15px;
    width: 440px;
    height: 32px;
    background: white;
    color: #000;
    border: 1px solid #C8C6C4;
    font-size: 13px;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", sans-serif;
    border-radius: 4px;
}

.key-icon {
    display: inline-block;
    width: 14px;
    height: 14px;
    border: 1px solid #777;
    margin-right: 8px;
    background-color: #eee;
    text-align: center;
    line-height: 14px;
    font-size: 10px;
}

.page-footer, .language-selector {
    position: absolute;
    font-size: 12px;
    color: #666;
    font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", sans-serif;
}

.page-footer {
    bottom: 10px;
    left: 10px;
}

.language-selector {
    top: 10px;
    right: 10px;
}

.language-selector a {
    color: #666;
    text-decoration: none;
    font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", sans-serif;
}

h1, h2, h3 {
    font-family: "Segoe UI Semibold", "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", sans-serif;
    font-weight: 600;
}

.footer-links, .error-message, .forgot-password, .password-header {
    font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", sans-serif;
}

a {
    font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", sans-serif;
}

.error-input {
    font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", sans-serif;
}