/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background: url('images/railwayfinal.jpeg') no-repeat center center fixed;
    background-size: cover;
    
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    color: #fff;
}

/* Glassmorphic Login Wrapper */
.login-wrap {
    background: rgba(255, 255, 255, 0.1); /* Glassmorphic effect */
    backdrop-filter: blur(10px);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 400px;
    padding: 40px;
    box-sizing: border-box;
    animation: fadeIn 1s ease-in-out;
}

/* Fade-in Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Login Header */
.login-html .tab {
    font-size: 26px;
    font-weight: bold;
    text-align: center;
    color: #fff;
    margin-bottom: 20px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Login Form */
.login-form {
    display: flex;
    flex-direction: column;
}

/* Form Groups */
.group {
    margin-bottom: 20px;
}

.group .label {
    font-size: 14px;
    color: #eee;
    margin-bottom: 5px;
    display: block;
}

/* Stylish Inputs */
.group .input {
    width: 100%;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 5px;
    font-size: 16px;
    box-sizing: border-box;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    transition: 0.3s ease-in-out;
}

.group .input:focus {
    border-color: #ffcc00;
    outline: none;
    background: rgba(255, 255, 255, 0.2);
}

/* Button Styling */
.button {
    width: 100%;
    padding: 12px;
    background: linear-gradient(45deg, #ffcc00, #ff6600);
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s ease;
}

.button:hover {
    background: linear-gradient(45deg, #ff6600, #cc0000);
}

/* Responsive Design */
@media (max-width: 480px) {
    .login-wrap {
        padding: 20px;
    }

    .login-html .tab {
        font-size: 20px;
    }

    .group .input {
        font-size: 14px;
    }

    .button {
        font-size: 14px;
        padding: 10px;
    }
}