/* File: assets/css/login.css */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    /* Attractive PG Background Image (High Quality) */
    background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://images.unsplash.com/photo-1555854877-bab0e564b8d5?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

/* Glassmorphism Card Effect */
.login-container {
    position: relative;
    width: 400px;
    min-height: 450px;
    background: rgba(255, 255, 255, 0.1); /* Transparent White */
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px); /* Frosted Glass Blur */
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.login-header {
    text-align: center;
    margin-bottom: 30px;
}

.login-header h2 {
    color: #fff;
    font-size: 28px;
    font-weight: 600;
    letter-spacing: 1px;
}

.login-header p {
    color: #ddd;
    font-size: 14px;
    margin-top: 5px;
}

/* Input Group Styling */
.input-group {
    position: relative;
    width: 100%;
    margin-bottom: 25px;
}

.input-group input {
    width: 100%;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    outline: none;
    color: #fff;
    font-size: 16px;
    transition: 0.3s;
}

.input-group input::placeholder {
    color: #ccc;
}

.input-group input:focus {
    background: rgba(255, 255, 255, 0.2);
    border-color: #fff;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

/* Icons inside Input */
.input-group i {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    cursor: pointer;
}

/* Login Button */
.btn-login {
    width: 100%;
    padding: 12px;
    background: linear-gradient(45deg, #ff357a, #fff172); /* Attractive Gradient */
    border: none;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 10px;
}

.btn-login:hover {
    transform: scale(1.05);
    background: linear-gradient(45deg, #fff172, #ff357a);
}

/* Footer Links */
.footer-links {
    margin-top: 20px;
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.footer-links a:hover {
    text-decoration: underline;
    color: #ff357a;
}

/* RESPONSIVE DESIGN (Mobile Friendly) */
@media (max-width: 480px) {
    .login-container {
        width: 90%;
        padding: 30px 20px;
    }
    
    .login-header h2 {
        font-size: 24px;
    }
}