.auth-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60vh;
    padding: 20px;
}

.auth-card {
    background: #fff;
    max-width: 450px;
    width: 100%;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    margin: 10px auto;
}

.auth-card h2 {
    margin-bottom: 25px;
    font-size: 24px;
    color: #333;
    text-align: center;
    font-weight: 600;
}

.auth-card .input-group {
    margin-bottom: 20px;
}

.auth-card label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #555;
    font-size: 14px;
}

.auth-card input[type="email"],
.auth-card input[type="password"] {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s;
    box-sizing: border-box; 
}

.auth-card input:focus {
    border-color: #007bff;
    outline: none;
    box-shadow: 0 0 0 3px rgba(0,123,255,0.1);
}

.btn-auth {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: var(--accent-color);
}

.alert {
    padding: 12px;
    border-radius: 6px;
    margin-bottom: 20px;
    font-size: 14px;
    text-align: center;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-danger {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.auth-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60vh;
    padding: 20px;
}

.auth-desc {
    text-align: center;
    color: #666;
    margin-bottom: 25px;
    font-size: 14px;
    line-height: 1.5;
}

/* Вікно перевірки пошти */
.email-check-view {
    text-align: center;
    padding: 10px 0;
}

.email-check-view h2 {
    margin-top: 15px;
    color: #333;
}

.email-check-view p {
    color: #555;
    margin: 15px 0;
}

.small-info {
    font-size: 13px;
    color: #999 !important;
}

.icon-circle {
    width: 80px;
    height: 80px;
    background: #eef6ff;
    color: #007bff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 35px;
}

.auth-footer {
    text-align: center;
    margin-top: 20px;
}

.auth-footer a {
    color: #007bff;
    text-decoration: none;
    font-size: 14px;
}