
:root {
    --primary-color: /*#6366f1*//*#f26e65*/#d95b52;
    --secondary-color: /*#8b5cf6*/rgba(0, 0, 0, 0.9);
    --success-color: #10b981;
    --danger-color: #ef4444;
    --warning-color: #f59e0b;
    --info-color: #3b82f6;
    --dark-color: #1f2937;
    --light-color: #f3f4f6;
}

body {
    background: linear-gradient(135deg, #f26e65 0%, var(--secondary-color) 100%);
    /* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.login-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    padding: 40px;
    /* max-width: 400px; */
    width: 100%;
}
.login-header {
    text-align: center;
    margin-bottom: 30px;
}
.login-header h2 {
    color: #f26e65;
    font-weight: bold;
}

.badge-hot {
    background-color: #ef4444;
    color: white;
}

.badge-warm {
    background-color: #f59e0b;
    color: white;
}

.badge-cold {
    background-color: #6b7280;
    color: white;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border: none;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.4);
}