/* Global Custom Styles */

.layout-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
    padding-top: 40px;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

.glass-panel {
    background: linear-gradient(135deg, rgba(15, 23, 42, 1) 0%, rgba(30, 41, 59, 0.85) 100%);
    backdrop-filter: blur(12px);
    color: #f8fafc;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 40px;
    max-width: 600px;
    width: 90%;
    text-align: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    opacity: .90;
    margin: 0 auto;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(to right, #38bdf8, #818cf8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.025em;
}

.page-title.warning {
    background: linear-gradient(to right, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.page-title.danger {
    background: linear-gradient(to right, #ef4444, #f87171);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.page-text {
    font-size: 1.1rem;
    color: #cbd5e1;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.brokerage-notice, .instructions {
    background: rgba(56, 189, 248, 0.1);
    border: 1px solid rgba(56, 189, 248, 0.2);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 2.5rem;
    display: flex;
    align-items: center;
    gap: 15px;
    text-align: left;
    color: #f8fafc;
}

.instructions {
    border: none;
    border-left: 4px solid #38bdf8;
    border-radius: 0 0.5rem 0.5rem 0;
}

.notice-icon {
    color: #38bdf8;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.notice-text {
    font-size: 1rem;
    color: #cbd5e1;
    margin: 0;
    line-height: 1.5;
}

.email-link {
    color: #38bdf8;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px dashed rgba(56, 189, 248, 0.4);
    transition: border-bottom-color 0.2s, color 0.2s;
}

.email-link:hover {
    color: #818cf8;
    border-bottom-color: #818cf8;
}

.icon {
    background: linear-gradient(to right, #38bdf8, #818cf8);
    color: #0f172a;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 0 20px rgba(56, 189, 248, 0.5);
}

.icon.warning {
    background: linear-gradient(to right, #fbbf24, #f59e0b);
    box-shadow: 0 0 20px rgba(251, 191, 36, 0.4);
}

.user-info {
    background-color: rgba(0, 0, 0, 0.3);
    border: 1px dashed rgba(255, 255, 255, 0.2);
    padding: 1.5rem;
    border-radius: 0.75rem;
    margin: 1.5rem 0;
    font-size: 1rem;
    color: #cbd5e1;
}

.user-name {
    font-weight: 600;
    color: #38bdf8;
    display: block;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.btn-primary {
    background: linear-gradient(to right, #2563eb, #3b82f6);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: transform 0.2s, box-shadow 0.2s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px rgba(37, 99, 235, 0.5);
    color: white;
}

.btn-success {
    background: linear-gradient(to right, #10b981, #059669);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: transform 0.2s, box-shadow 0.2s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px rgba(16, 185, 129, 0.5);
    color: white;
}

.form-container {
    text-align: left;
    margin: 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.form-input-icon {
    position: absolute;
    left: 1rem;
    color: #64748b;
    font-size: 1rem;
    font-weight: 500;
    pointer-events: none;
}

.form-input {
    width: 100%;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 0.75rem 1rem 0.75rem 2rem;
    color: #f8fafc;
    font-size: 1rem;
    transition: border-color 0.2s, box-shadow 0.2s, background-color 0.2s;
    box-sizing: border-box;
}

.form-input:focus {
    outline: none;
    background: rgba(15, 23, 42, 0.8);
    border-color: #fbbf24;
    box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.2);
}

.form-input::placeholder {
    color: #475569;
}
