:root {
    --primary-gradient: linear-gradient(135deg, #EF4123 0%, #F7931E 100%);
    --secondary-color: #000000;
    --bg-color: #f8fafc;
    --card-bg: rgba(255, 255, 255, 0.9);
    --text-color: #0f172a;
    --text-muted: #64748b;
    --input-bg: #f1f5f9;
    --border-color: #e2e8f0;
    --success-color: #10b981;
    --error-color: #ef4444;
    --glass-border: 1px solid rgba(255, 255, 255, 0.5);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
    position: relative;
}

/* Background Effects */
.background-globes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    background: #ffffff;
}

.globe {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    animation: floating 10s infinite ease-in-out;
}

.globe-1 {
    width: 500px;
    height: 500px;
    background: #EF4123; /* Red from logo */
    top: -150px;
    left: -150px;
}

.globe-2 {
    width: 400px;
    height: 400px;
    background: #F7931E; /* Orange from logo */
    bottom: -100px;
    right: -100px;
    animation-delay: -2s;
}

.globe-3 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #EF4123, #F7931E);
    top: 40%;
    left: 60%;
    animation-delay: -5s;
    opacity: 0.1;
}

@keyframes floating {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(20px, -20px); }
}

/* Container */
.container {
    width: 100%;
    max-width: 480px;
    padding: 20px;
    z-index: 1;
}

/* Card */
.form-card {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 30px;
    padding: 3rem 2.5rem;
    box-shadow: 0 25px 50px -12px rgba(239, 65, 35, 0.15); /* Orange shadow */
    transform: translateY(0);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.form-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 35px 60px -12px rgba(239, 65, 35, 0.2);
}

header {
    text-align: center;
    margin-bottom: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo {
    max-width: 280px;
    margin-bottom: 1.5rem;
    display: block;
}

header h1 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #000;
    letter-spacing: -0.5px;
}

header p {
    color: var(--text-muted);
    font-size: 1rem;
}

/* Form Elements */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: #334155;
    margin-left: 4px;
}

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

.input-wrapper input {
    width: 100%;
    background: var(--input-bg);
    border: 2px solid transparent;
    border-radius: 16px;
    padding: 14px 14px 14px 44px;
    font-size: 1rem;
    color: var(--text-color);
    font-family: inherit;
    font-weight: 500;
    transition: all 0.3s ease;
}

.input-wrapper input:focus {
    outline: none;
    background: #fff;
    border-color: #F7931E;
    box-shadow: 0 0 0 4px rgba(247, 147, 30, 0.1);
}

.input-wrapper input::placeholder {
    color: #94a3b8;
}

.input-wrapper .icon {
    position: absolute;
    left: 14px;
    color: #94a3b8;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}

.input-wrapper input:focus + .icon {
    color: #EF4123;
}

/* Button */
.btn-submit {
    width: 100%;
    background: var(--primary-gradient);
    color: white;
    border: none;
    padding: 16px;
    border-radius: 16px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s ease;
    margin-top: 1.5rem;
    box-shadow: 0 10px 20px -5px rgba(239, 65, 35, 0.4);
}

.btn-submit:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
    box-shadow: 0 20px 25px -5px rgba(239, 65, 35, 0.5);
}

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

/* Message */
.message {
    margin-top: 1.5rem;
    padding: 1rem;
    border-radius: 12px;
    text-align: center;
    font-size: 0.95rem;
    font-weight: 500;
    animation: fadeIn 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.message.success {
    background: #ecfdf5;
    color: #059669;
    border: 1px solid #a7f3d0;
}

.message.error {
    background: #fef2f2;
    color: #dc2626;
    border: 1px solid #fecaca;
}

.hidden {
    display: none;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 480px) {
    .globe { opacity: 0.4; }
    .form-card { padding: 2rem 1.5rem; }
}
