﻿body {
    font-family: Arial, sans-serif;
    background: #181a20;
    margin: 0;
    padding: 0;
    color: #e0e0e0;
}

.login-form {
    width: 100%;
    max-width: 400px;
    margin: 60px auto;
    background: #23262f;
    border-radius: 8px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.6);
    padding: 32px 24px;
}

.form-container {
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.form-title {
    text-align: center;
    margin-bottom: 24px;
    font-size: 1.5em;
    color: #e0e0e0;
}

.form-label {
    margin-top: 12px;
    margin-bottom: 4px;
    color: #b0b3b8;
}

.form-input {
    padding: 8px;
    border: 1px solid #444;
    border-radius: 4px;
    font-size: 1em;
    margin-bottom: 12px;
    background: #181a20;
    color: #e0e0e0;
}

.form-button {
    background: #0078d4;
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 10px;
    font-size: 1em;
    cursor: pointer;
    margin-top: 8px;
    margin-bottom: 8px;
    transition: background 0.2s;
}

    .form-button:hover {
        background: #005fa3;
    }

.form-link {
    color: #4aa8ff;
    text-decoration: none;
    font-size: 0.95em;
    margin-bottom: 8px;
    display: inline-block;
}

    .form-link:hover {
        text-decoration: underline;
    }

.error-dialog {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(24,26,32,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.error-dialog-content {
    background: #23262f;
    padding: 24px 32px;
    border-radius: 8px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.7);
    text-align: center;
}

.error-message {
    color: #ff4c4c;
    margin-bottom: 16px;
    display: block;
}

.error-dialog-button {
    background: #0078d4;
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 8px 16px;
    font-size: 1em;
    cursor: pointer;
}

.company-select-dialog {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(24,26,32,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.company-dialog-content {
    background: #23262f;
    padding: 24px 32px;
    border-radius: 8px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.7);
    text-align: center;
    color: #e0e0e0;
}

#companySelect {
    width: 100%;
    padding: 8px;
    margin-bottom: 16px;
    border-radius: 4px;
    border: 1px solid #444;
    background: #181a20;
    color: #e0e0e0;
}
