/* Стили для страницы создания заказа */
.auth-page {
    padding: 80px 0;
    background: var(--light-gray);
    margin-top: 50px;
}

.auth-container {
    max-width: 500px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.auth-header {
    text-align: center;
    margin-bottom: 30px;
}

.auth-header h1 {
    color: var(--text-dark);
    margin-bottom: 10px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    display: block;
}

.form-control {
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    width: 100%;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-control:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 0.2rem rgba(0, 91, 170, 0.25);
    outline: none;
}

.form-control textarea {
    resize: vertical;
    min-height: 100px;
}

.auth-link {
    text-align: center;
    margin-top: 20px;
}

.auth-link a {
    color: var(--primary-blue);
    text-decoration: none;
}

.auth-link a:hover {
    text-decoration: underline;
}

.error-message {
    color: #dc3545;
    font-size: 14px;
    margin-top: 5px;
}

.w-100 {
    width: 100%;
}

@media (max-width: 576px) {
    .auth-container {
        margin: 0 20px;
        padding: 30px 20px;
    }
    
    .auth-header h1 {
        font-size: 24px;
    }
}