﻿:root {
    --primary-color: #e84c88;
    --primary-dark: #d03e75;
    --secondary-color: #d8bfd8;
    --secondary-dark: #4a1548;
    --primary-bg-color: #fff;
    --secondary-bg-color: #eed9ee;
    --text-color: #333;
    --border-radius: 24px;
    --dropdown-border-radius: 16px;
    --btn-link-border-radius: 8px;
    --image-border-color: #e84c8873;
}

main {
    background-color: var(--secondary-bg-color)
}

/* Auth pages styling */
.auth-container {
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.auth-card {
    border: none;
    border-radius: 15px;
    box-shadow: 1px 3px 10px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.auth-card .card-body {
    padding: 2.5rem;
}

.auth-header {
    margin-bottom: 2rem;
}

.auth-header h1 {
    font-weight: 600;
    color: var(--primary-color);
}

.auth-header p {
    color: #6c757d;
}

.auth-form .form-label {
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.auth-form .form-control {
    padding: 0.75rem 1rem;
    border: 1px solid #e0e0e0;
    background-color: #f8f9fa;
    transition: all 0.3s ease;
}

.auth-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(219, 112, 147, 0.25);
    background-color: #fff;
}

.auth-form .input-group .btn {
    padding: 0.75rem 1rem;
}

.auth-form .btn-primary {
    font-weight: 500;
    transition: all 0.3s ease;
}

.auth-form .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(219, 112, 147, 0.3);
}

.auth-divider {
    position: relative;
    text-align: center;
    margin: 1.5rem 0;
}

.auth-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background-color: #e0e0e0;
}

.auth-divider span {
    position: relative;
    background-color: #fff;
    padding: 0 1rem;
    color: #6c757d;
}

.auth-footer {
    margin-top: 2rem;
    text-align: center;
}

.auth-footer a {
    font-weight: 500;
    text-decoration: none;
}

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

.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.form-check-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(219, 112, 147, 0.25);
}

/* Decorative elements */
.auth-decoration {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(219, 112, 147, 0.1), rgba(219, 112, 147, 0.05));
    z-index: -1;
}

.auth-decoration-1 {
    top: -150px;
    right: -150px;
}

.auth-decoration-2 {
    bottom: -150px;
    left: -150px;
}
