/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
    scroll-behavior: smooth; /* Smooth scrolling */
}

/* Body Styling */
body {
    background: linear-gradient(to bottom right, #1d3557, #457b9d);
    color: #f1faee;
    padding: 0 20px;
    line-height: 1.6;
    font-size: 1rem; /* Consistent font size for the body */
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #1d3557;
    padding: 20px 30px;
    border-radius: 12px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    color: #f1faee;
    margin: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease-in-out;
}

.navbar:hover {
    background-color: #457b9d;
    transform: scale(1.02);
}

.navbar .logo {
    font-size: 2rem; /* Adjust the font size of the logo */
    font-weight: bold;
}

.nav-links a {
    text-decoration: none;
    margin: 0 15px;
    padding: 10px 20px;
    background-color: #457b9d;
    color: #f1faee;
    border-radius: 8px;
    font-size: 1rem; /* Adjust font size for links */
    transition: all 0.3s ease;
}

.nav-links a:hover {
    background-color: #a8dadc;
    color: #1d3557;
}

/* Intro Header Section */
.intro-header {
    text-align: center;
    margin: 20px auto;
    color: #f1faee;
}

.intro-header p {
    margin: 10px 0;
    font-size: 1rem; /* Ensure same font size as body */
    line-height: 1.6;
}

/* Centering Intro Text */
.intro-text {
    text-align: center;  /* Align text to the center */
    margin: 20px auto;   /* Add some spacing above and below */
    max-width: 800px;    /* Limit the width of the section */
    padding: 20px;
}

.intro-text ul {
    list-style-type: none; /* Removes the default bullet points */
    padding-left: 0; /* Removes the left padding */
}

/* Main Content */
main {
    text-align: center;
    margin-top: 60px;
    animation: fadeIn 1.5s ease-in-out; /* Fade-in animation */
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

main h2 {
    font-size: 1.8rem; /* Set a consistent font size */
    color: #f1faee;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

main p {
    font-size: 1rem; /* Ensure consistency */
    color: #a8dadc;
    margin: 10px 0;
}

.progress-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.step-number {
    width: 30px;
    height: 30px;
    background-color: #ccc;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.step-label {
    margin-top: 5px;
    font-size: 12px;
    color: #e9e9e9;
}

.progress-line {
    width: 50px;
    height: 3px;
    background-color: #ccc;
    margin: 0 10px;
}

.step.completed .step-number {
    background-color: #d7dbd7; /* Green for completed steps */
}

.step.completed + .progress-line {
    background-color: #b7b9b7;
}
body {
    font-family: 'Roboto', sans-serif;
}

h2 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

/* Image Container */
.image-container {
    display: flex;
    justify-content: center; /* Center the images horizontally */
    gap: 20px; /* Add spacing between images */
    margin-top: 20px;
}

.main-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out;
}

.main-image:hover {
    transform: scale(1.05); /* Slight zoom effect on hover */
}

/* Authentication Container */
.auth-container {
    max-width: 400px;
    margin: 50px auto;
    padding: 30px;
    background: #f1faee;
    border-radius: 12px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    text-align: center;
    animation: slideUp 1s ease-in-out;
    transform-origin: bottom;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.auth-container h2 {
    margin-bottom: 20px;
    font-size: 1.6rem; /* Maintain consistent font size */
    color: #1d3557;
    font-weight: bold;
}

/* Label Styling */
.auth-container label {
    display: block;
    font-size: 1rem; /* Ensure same font size */
    color: #1d3557;
    margin-bottom: 8px;
    font-weight: bold;
    text-align: left;
    opacity: 0; /* Start with label hidden */
    transform: translateY(-20px); /* Start with label above the input */
    animation: fadeInUp 0.5s ease-out forwards; /* Fade in and slide up */
}

/* Input Animation on Focus */
.auth-container input {
    width: 100%;
    padding: 12px;
    border: 2px solid #a8dadc;
    border-radius: 8px;
    font-size: 1rem; /* Consistent input font size */
    margin-bottom: 20px;
    color: #1d3557;
    background: #f1faee;
    box-shadow: inset 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    opacity: 0; /* Start with input hidden */
    transform: translateY(20px); /* Start with input slightly below */
    animation: fadeInUp 0.5s ease-out 0.2s forwards; /* Delayed animation */
}

/* Focus State for Input */
.auth-container input:focus {
    border-color: #457b9d;
    box-shadow: 0 0 8px rgba(69, 123, 157, 0.6);
    outline: none;
}

/* Glowing Button */
.auth-container .btn {
    width: 100%;
    background-color: #457b9d;
    color: #f1faee;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    font-size: 1.2rem; /* Adjust button font size */
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0px 5px 15px rgba(69, 123, 157, 0.4);
    transition: all 0.3s ease-in-out;
}

.auth-container .btn:hover {
    background-color: #1d3557;
    box-shadow: 0px 8px 20px rgba(69, 123, 157, 0.6);
}

/* Footer */
footer {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    background-color: #1d3557;
    color: #f1faee;
    border-radius: 8px;
    font-size: 1rem; /* Maintain consistent font size */
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1.5s ease-in-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .auth-container {
        width: 90%;
        margin: auto;
    }

    .intro-text {
        font-size: 14px;
    }
}



.logo-container {
    text-align: center;
    margin-bottom: 20px;
}

.logo-container img {
    width: 50px;
    height: auto;
}
.cards {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.card {
    flex: 1;
    background: #fefefe;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
}

.card h4 {
    color: #333;
    margin-bottom: 10px;
}

.card p {
    font-size: 14px;
    color: #555;
}
.social-footer {
    text-align: center;
    margin-top: 30px;
}

.social-footer .social-icons a {
    margin: 0 10px;
    display: inline-block;
}

.social-footer .social-icons img {
    width: 30px;
    height: 30px;
}

input[type="checkbox"] {
    display: none;
}

input[type="checkbox"] + label {
    position: relative;
    padding-left: 25px;
    cursor: pointer;
}

input[type="checkbox"]:checked + label::before {
    content: "\2713"; /* Check mark */
    position: absolute;
    left: 0;
    top: 0;
    color: #4CAF50;
}
.decorative-elements {
    text-align: center;
    margin-top: 40px;
}

.icon-arrow-down {
    font-size: 40px;
    color: #4CAF50;
}

.line {
    border-top: 2px dashed #19ad59;
    margin: 20px 0;
    width: 60%;
    margin-left: auto;
    margin-right: auto;
}

