/* General Reset */
body, html {
    margin: 0;
    padding: 0;
    font-family: 'Lato', sans-serif;
    height: 100%;
    background: linear-gradient(135deg, #c2c2c2, #f1f1f1);
    color: #2c3e50;
}

/* Login Page Layout */
.login-page {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: url('/luxury-background.jpg') no-repeat center center / cover;
    backdrop-filter: blur(10px);
    position: relative;
}

/* Floating Card */
.login-card {
    background: rgba(255, 255, 255, 0.8); /* Semi-transparent background */
    border-radius: 12px;
    padding: 3rem;
    width: 100%;
    max-width: 400px;
    box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.1); /* Floating effect */
    text-align: center;
}

/* Brand Name */
.brand-name {
    font-family: 'Lato', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #34495e; /* Elegant gray */
    margin-bottom: 0.5rem;
}

/* Logo */
.logo {
    width: 120px; /* Adjust to fit your logo size */
    height: auto;
    margin-bottom: 20px;
}

/* Subheading */
.login-subheading {
    font-size: 1rem;
    color: #7f8c8d; /* Softer gray */
    margin-bottom: 1.5rem;
}

/* Form Styling */
.form-group {
    margin-bottom: 20px;
}

.form-label {
    font-weight: 600;
    color: #34495e;
}

/* Form Inputs */
.form-control {
    background-color: #ecf0f1;
    border: none;
    border-radius: 8px;
    height: 40px;
    padding: 10px;
    color: #2c3e50;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    box-shadow: 0px 0px 8px rgba(41, 128, 185, 0.5);
}

/* Button */
.btn-primary {
    background-color: #f39c12; /* Golden accent */
    color: #fff;
    font-weight: 600;
    border: none;
    height: 45px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #e67e22; /* Darker golden color */
}

/* Footer */
footer {
    color: #bdc3c7;
    font-size: 0.9rem;
}

.footer-link {
    color: #f39c12;
    text-decoration: none;
    font-weight: bold;
}

.footer-link:hover {
    text-decoration: underline;
}
