/* Login Page Styles */
.login-body {
    background: linear-gradient(135deg, #ffe5f0 0%, #fff0f5 50%, #fff5f9 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 20px;
}

.login-container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 0;
}

.login-wrapper {
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
}

.login-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.logo-container {
    background: linear-gradient(135deg, #ff6b9d 0%, #ff8fab 100%);
    padding: 40px 30px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
}

.logo-left {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}

.restaurant-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
}

.logo-circle {
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid rgba(255, 255, 255, 0.3);
    flex-shrink: 0;
}

.logo-content {
    width: 100px;
    height: 100px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chef-icon {
    font-size: 50px;
}

.restaurant-name {
    font-size: 28px;
    font-weight: bold;
    letter-spacing: 2px;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.restaurant-tagline {
    font-size: 14px;
    font-style: italic;
    opacity: 0.95;
    letter-spacing: 1px;
    margin: 0;
    line-height: 1.4;
}

.login-form-container {
    padding: 40px 35px;
}

.login-title {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    text-align: center;
}

.login-subtitle {
    font-size: 14px;
    color: #666;
    text-align: center;
    margin-bottom: 30px;
}

.form-label {
    font-weight: 500;
    color: #333;
    margin-bottom: 8px;
    font-size: 14px;
}

.form-control-lg {
    padding: 12px 16px;
    font-size: 15px;
    border-radius: 8px;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
}

.form-control-lg:focus {
    border-color: #ff6b9d;
    box-shadow: 0 0 0 0.2rem rgba(255, 107, 157, 0.25);
    outline: none;
}

.login-btn {
    background: linear-gradient(135deg, #ff6b9d 0%, #ff8fab 100%);
    border: none;
    padding: 14px;
    font-weight: 600;
    font-size: 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.login-btn:hover {
    background: linear-gradient(135deg, #ff5a8a 0%, #ff7fa0 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 157, 0.4);
}

.login-btn:active {
    transform: translateY(0);
}

.alert {
    border-radius: 8px;
    border: none;
    margin-bottom: 20px;
}

.alert-danger {
    background-color: #fee;
    color: #c33;
    border-left: 4px solid #c33;
}

/* Responsive Design */
@media (max-width: 576px) {
    .login-card {
        border-radius: 15px;
    }

    .logo-container {
        padding: 30px 20px;
        flex-direction: column;
        text-align: center;
    }

    .logo-left {
        flex-direction: column;
        width: 100%;
        align-items: center;
        gap: 15px;
    }

    .restaurant-info {
        align-items: center;
        text-align: center;
    }

    .logo-circle {
        margin: 0 auto;
        width: 100px;
        height: 100px;
    }

    .logo-content {
        width: 85px;
        height: 85px;
    }

    .chef-icon {
        font-size: 40px;
    }

    .restaurant-name {
        font-size: 24px;
    }

    .login-form-container {
        padding: 30px 25px;
    }
}

