	/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body Styling */
body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(145deg, #f5fefd, #f7f7f7);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
}

/* Container */
.container {
    width: 100%;
    max-width: 450px;
    padding: 20px;
}

/* Card Styling */
.login-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: center;
}

/* Logo Section */
.logo-section {
    display: flex;
    justify-content: center;
    margin-bottom: 15px;
}

.logo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #ddd; /* Placeholder background for the logo */
}

/* Title and Description */
h2 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 10px;
}

p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 20px;
}

/* Form Styling */
.input-group label {
    display: block;
    margin-bottom: 5px;
    font-size: 0.9rem;
    color: #555;
    text-align: left;
}

.input-group input {
    width: 100%;
    padding: 12px;
    font-size: 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    transition: border-color 0.3s ease;
}

.input-group input:focus {
    border-color: #4a90e2;
    outline: none;
}

/* Button Styling */
.next-button {
    background: #4a90e2;
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-size: 1rem;
    width: 100%;
    margin-top: 15px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.next-button:hover {
    background: #357abd;
}

/* Footer Styling */
.footer {
    background: #f2f2f2; /* Light ash background */
    width: 100%;
    padding: 15px 20px;
    position: fixed;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: #555;
    flex-wrap: wrap;
}

.footer-left,
.footer-right {
    flex: 1;
    text-align: center; /* Center-align text for smaller screens */
    margin: 5px 0; /* Spacing for smaller devices */
}

.footer-right {
    text-align: right; /* Align links to the right for larger screens */
}

.footer-content a {
    text-decoration: none;
    color: #4a90e2;
    margin-left: 10px;
    transition: color 0.3s ease;
}

.footer-content a:hover {
    color: #357abd;
}

/* Responsive Styling */
@media (max-width: 768px) {
    .footer {
        flex-direction: column; /* Stack items for smaller screens */
        align-items: center;
    }

    .footer-content {
        flex-direction: column; /* Stack content vertically */
        text-align: center; /* Center-align text */
    }

    .footer-right {
        text-align: center;
        margin-top: 5px; /* Add spacing between items */
    }

    .footer-left {
        margin-bottom: 5px;
    }
}

/* Responsive Styling Enhancements for the Form */

/* Ensure the form is responsive for smaller screens */
.container {
    padding: 10px;
}

.login-card {
    padding: 20px;
}

/* Adjust font sizes and spacing for better readability on small screens */
h2 {
    font-size: 1.5rem;
}

p {
    font-size: 0.8rem;
}

.input-group label {
    font-size: 0.8rem;
}

.input-group input {
    font-size: 0.9rem;
    padding: 10px;
}

/* Ensure buttons scale well on smaller screens */
.next-button {
    font-size: 0.9rem;
    padding: 10px;
}

/* Footer adjustments */
.footer {
    padding: 10px 15px;
}

.footer-content {
    font-size: 0.8rem;
}

.footer-content a {
    font-size: 0.8rem;
}

/* Stack elements for screens smaller than 480px */
@media (max-width: 480px) {
    .container {
        padding: 5px;
    }

    .login-card {
        padding: 15px;
    }

    h2 {
        font-size: 1.2rem;
    }

    p {
        font-size: 0.7rem;
    }

    .footer {
        padding: 8px 10px;
    }

    .footer-content {
        font-size: 0.7rem;
    }

    .footer-content a {
        font-size: 0.7rem;
    }
}
