/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: #f4f4f4;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.container {
    width: 100%;
    max-width: 440px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.logo-section {
    background: linear-gradient(135deg, #FF7F00 0%, #FF6600 100%);
    padding: 40px 30px 30px;
    text-align: center;
    color: white;
}

.logo {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    backdrop-filter: blur(10px);
}

.logo svg {
    stroke: white;
}

.logo-section h1 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 4px;
    letter-spacing: -0.5px;
}

.subtitle {
    font-size: 14px;
    opacity: 0.95;
    font-weight: 500;
}

/* Form Container */
.form-container {
    padding: 40px 30px;
    position: relative;
}

.form-wrapper {
    display: none;
    animation: fadeIn 0.4s ease-in-out;
}

.form-wrapper.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-wrapper h2 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.form-description {
    font-size: 14px;
    color: #666;
    margin-bottom: 30px;
}

/* Form Elements */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.form-group input {
    width: 100%;
    padding: 12px 16px;
    font-size: 15px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: #fafafa;
}

.form-group input:focus {
    outline: none;
    border-color: #FF7F00;
    background: white;
    box-shadow: 0 0 0 4px rgba(255, 127, 0, 0.1);
}

.form-group input::placeholder {
    color: #999;
}


.forgot-link {
    color: #FF7F00;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

.forgot-link:hover {
    color: #FF6600;
}

/* Primary Button */
.btn-primary {
    margin-top: 10px;
    width: 100%;
    padding: 14px;
    font-size: 16px;
    font-weight: 600;
    color: white;
    background: linear-gradient(135deg, #FF7F00 0%, #FF6600 100%);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 127, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 127, 0, 0.4);
}

.btn-primary:active {
    transform: translateY(0);
}

/* Form Switch */
.form-switch {
    text-align: center;
    margin-top: 24px;
    font-size: 14px;
    color: #666;
}

.link-button {
    background: none;
    border: none;
    color: #FF7F00;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    margin-left: 4px;
    transition: color 0.2s;
}

.link-button:hover {
    color: #FF6600;
    text-decoration: underline;
}

/* Toast Notification */
.toast {
    position: fixed;
    top: 20px;
    right: 20px;
    background: white;
    padding: 16px 20px;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 280px;
    transform: translateX(400px);
    transition: transform 0.3s ease;
    z-index: 1000;
}

.toast.show {
    transform: translateX(0);
}

.toast.success {
    border-left: 4px solid #10b981;
}

.toast.error {
    border-left: 4px solid #ef4444;
}

.toast-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.toast.success .toast-icon {
    background: #d1fae5;
}

.toast.success .toast-icon svg {
    stroke: #10b981;
}

.toast.error .toast-icon {
    background: #fee2e2;
}

.toast.error .toast-icon svg {
    stroke: #ef4444;
}

.toast span {
    font-size: 14px;
    color: #333;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 480px) {
    body {
        padding: 0;
    }
    
    .container {
        border-radius: 0;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
    }
    
    .logo-section {
        padding: 50px 30px 30px;
    }
    
    .form-container {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .toast {
        left: 20px;
        right: 20px;
        min-width: auto;
    }
}

    .fa-utensils{
          font-size: 40px;
        }