/* ============================================
   АВТОРИЗАЦИЯ: СОВРЕМЕННЫЙ ДИЗАЙН
   ============================================ */
.auth-container {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.auth-card {
    max-width: 450px;
    width: 100%;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
    margin: 20px;
}

.auth-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.auth-header {
    background: linear-gradient(135deg, #2C3E50 0%, #1A252F 100%);
    padding: 30px;
    text-align: center;
    color: white;
}

.auth-header h2 {
    margin: 0 0 8px 0;
    font-size: 28px;
    font-weight: 600;
    color: white;
    border: none;
}

.auth-header p {
    margin: 0;
    font-size: 14px;
    opacity: 0.9;
}

.auth-body {
    padding: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #2C3E50;
}

.input-group {
    position: relative;
    display: flex;
    align-items: center;
}

.input-group svg {
    position: absolute;
    left: 12px;
    color: #7F8C8D;
    width: 18px;
    height: 18px;
    pointer-events: none;
}

.input-group input {
    width: 100%;
    padding: 12px 12px 12px 40px;
    border: 1px solid #ECF0F1;
    border-radius: 10px;
    font-size: 14px;
    transition: all 0.2s;
}

.input-group input:focus {
    border-color: #E67E22;
    outline: none;
    box-shadow: 0 0 0 3px rgba(230, 126, 34, 0.1);
}

.auth-btn {
    width: 100%;
    padding: 12px;
    background: #E67E22;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.auth-btn:hover {
    background: #D35400;
}

.auth-footer {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #ECF0F1;
    font-size: 14px;
}

.auth-footer a {
    color: #E67E22;
    text-decoration: none;
    font-weight: 500;
}

.auth-footer a:hover {
    text-decoration: underline;
}

.errorlist {
    background: #FDEDEC;
    color: #E74C3C;
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 20px;
    list-style: none;
    font-size: 13px;
}

.helptext {
    font-size: 12px;
    color: #7F8C8D;
    margin-top: 5px;
    display: block;
}