.login-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.login-popup__content {
    max-width: 400px;
    width: 90%;
}

.login-form {
    background: #AED2EC;
    padding: 40px;
    border-radius: 12px;
    position: relative;
}

.login-popup__close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1;
}

.login-popup__close svg {
    stroke: #2C3E50;
    transition: stroke 0.3s;
}

.login-popup__close:hover svg {
    stroke: #1A5276;
}

.login-form__title {
    font-size: 28px;
    color: #2C3E50;
    margin-bottom: 30px;
    text-align: center;
}

.login-form__field {
    margin-bottom: 20px;
}

.login-form__field label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2C3E50;
}

.login-form__btn {
    width: 100%;
    padding: 15px;
    background: #2C3E50;
    color: #FFF;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 10px;
}

.login-form__btn:hover {
    background: #1A5276;
}

.login-form__links {
    margin-top: 20px;
    text-align: center;
    font-size: 14px;
}

.login-form__links a {
    color: #2C3E50;
    text-decoration: underline;
}

.login-form__links a:hover {
    color: #1A5276;
}

.login-form__register {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(44, 62, 80, 0.2);
    text-align: center;
    font-size: 14px;
}

.login-form__register a {
    color: #2C3E50;
    font-weight: 600;
    text-decoration: underline;
}