/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: linear-gradient(to right, #0066cc, #00ccff);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    flex-direction: column;
}

.login-wrapper {
    width: 100%;
    max-width: 400px;
    padding: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.9);
}

.login-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.login-card h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 1.5rem;
}

.input-group {
    position: relative;
    margin-bottom: 1.5rem;
    width: 100%;
}

.input-group input {
    width: 100%;
    padding: 15px 45px;
    border-radius: 30px;
    border: 2px solid #ccc;
    transition: all 0.3s ease;
}

.input-group input:focus {
    border-color: #0066cc;
    box-shadow: 0 4px 20px rgba(0, 102, 204, 0.3);
}

.input-group i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #777;
    transition: all 0.3s ease;
}

.input-group input:focus + i {
    color: #0066cc;
}

p {
    font-size: 0.9rem;
    color: #666;
    margin-top: 5px;
    line-height: 1.5;
}

.btn {
    font-size: 1rem;
    padding: 12px 25px;
    border-radius: 50px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-info {
    background-color: #0066cc;
    color: #fff;
    border: none;
}

.btn-info:hover {
    background-color: #0055aa;
}

.btn-primary {
    background-color: #00cc66;
    color: #fff;
    border: none;
}

.btn-primary:hover {
    background-color: #00aa55;
}

.login-card {
    background: rgba(255, 255, 255, 0.8);
    padding: 30px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
}

.mt-5 {
    margin-top: 2rem;
}

.mb-2 {
    margin-bottom: 1rem;
}

.d-flex {
    display: flex;
}

.justify-content-between {
    justify-content: space-between;
    width: 100%;
}

/* Footer Styling */
footer {
    margin-top: auto;
    width: 100%;
    background-color: #0066cc;
    color: #fff;
    text-align: center;
    padding: 15px 0;
    font-size: 0.9rem;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
}

footer a {
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #00ccff;
}

/* Responsive Styling */
@media (max-width: 768px) {
    .login-wrapper {
        max-width: 90%;
    }

    .login-card h2 {
        font-size: 1.8rem;
    }

    .btn {
        font-size: 0.9rem;
    }

    footer {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .input-group input {
        padding: 10px 40px;
    }

    .input-group i {
        left: 10px;
    }

    footer {
        padding: 10px 0;
    }
}