

:root {

    --primary-color: #0284c7;       
    --primary-hover: #0369a1;       
    --accent-color: #0d9488;        
    --bg-gradient: linear-gradient(135deg, #0f172a 0%, #1e3a8a 50%, #0f2537 100%);
    --text-main: #1e293b;           
    --text-muted: #64748b;          
    --glass-bg: rgba(255, 255, 255, 0.75);
    --glass-border: rgba(255, 255, 255, 0.3);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2);
}

body {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    color: var(--text-main);
    background: #f8fafc;
    min-height: 100vh;
    overflow-x: hidden;
}

::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: #f1f5f9;
}
::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

.glass-wrapper {
    background-image: var(--bg-gradient);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 20px;
}

.glass-bg-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
    opacity: 0.4;
}
.shape-1 {
    width: 300px;
    height: 300px;
    background: var(--accent-color);
    top: 15%;
    left: 15%;
}
.shape-2 {
    width: 400px;
    height: 400px;
    background: var(--primary-color);
    bottom: 15%;
    right: 15%;
}

.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    border-radius: 16px;
    padding: 2.5rem;
    width: 100%;
    max-width: 450px;
    z-index: 1;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glass-card:hover {
    box-shadow: 0 12px 40px 0 rgba(0, 0, 0, 0.25);
}

.form-label {
    font-weight: 600;
    font-size: 0.9rem;
    color: #334155;
    margin-bottom: 0.5rem;
}

.form-control {
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    padding: 0.65rem 1rem;
    font-size: 0.95rem;
    background-color: rgba(255, 255, 255, 0.8);
    transition: all 0.2s ease-in-out;
}

.form-control:focus {
    color: #1e293b;
    background-color: #fff;
    border-color: var(--primary-color);
    outline: 0;
    box-shadow: 0 0 0 4px rgba(2, 132, 199, 0.15);
}

.btn-custom-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0284c7e0 100%);
    color: #fff;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    padding: 0.7rem 1.5rem;
    transition: all 0.25s ease;
    box-shadow: 0 4px 12px rgba(2, 132, 199, 0.2);
}

.btn-custom-primary:hover {
    background: linear-gradient(135deg, var(--primary-hover) 0%, var(--primary-color) 100%);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(2, 132, 199, 0.3);
}

.btn-custom-primary:active {
    transform: translateY(1px);
}

.text-link {
    color: var(--primary-color);
    font-weight: 600;
    transition: color 0.2s ease;
}

.text-link:hover {
    color: var(--primary-hover);
    text-decoration: underline !important;
}

.main-content-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    padding: 2rem;
    margin-bottom: 2rem;
}

.section-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    border-left: 4px solid var(--primary-color);
    padding-left: 10px;
    margin-bottom: 1.5rem;
}
