 /* Base colors */
 :root {
    --blue: #608CDC;
    --white: #FFFFFF;
    --black: #000000;
    --darker-blue: #366ED3;
}
span {
    color: var(--blue);
}

/* Font settings */
body {
    font-family: 'Nunito', sans-serif;
    color: var(--black);
}

h1, h5 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

h1 {
    font-size: 24px;
}

h2, h3 {
    font-size: 110px;
    font-family: 'Poppins', sans-serif;
}

h4 {
    font-size: 106px;
    font-family: 'Poppins', sans-serif;
}

h5 {
    font-size: 24px;
}

h6 {
    font-size: 14px;
}

p {
    font-size: 18px;  /* Default to Paragraph 2 size */
}

.paragraph-1 {
    font-size: 24px;
}

.paragraph-2 {
    font-size: 18px;
}

.paragraph-3 {
    font-size: 18px;
}


/* Full-screen black gradient background */
.fullscreen-bg {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 1));
    z-index: -1;
}

/* Full-screen background */
/* .fullscreen-bg {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.7);  /* semi-transparent black */
    /* z-index: 1; */
/* } */ */

/* Centered content */
.centered-content {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;  /* viewport height */
    position: relative;
    z-index: 2;
}

/* Form container (slight modifications) */
.form-container {
    /* ... (rest of the previous styles) ... */
    width: 100%;
    max-width: 400px;
    z-index: 3;
}


/* Navbar styling */
.navbar {
    position: relative;  /* Ensure z-index is effective */
    z-index: 2;  /* Ensure navbar is above the gradient background */
    display: flex;  /* Turn the navbar into a flex container */
    align-items: center;  /* Vertically center align children items */
    justify-content: space-between; /* Optional: Add space between the logo and the welcome text */
    padding: 10px 20px;  /* Optional: Add some padding to the navbar */
}


.welcome-text {
    margin-left: auto;  /* Push the welcome text to the right side of the navbar */
}

.navbar-logo {
    width: 100px;  /* Adjust this value as needed */
    height: auto;  /* Maintain aspect ratio */
    display: block; /* To remove potential bottom spacing */
}

/* CSS for main content container */
.main-content {
    position: relative;  /* Make sure z-index is effective */
    z-index: 3;  /* Ensure it's above the gradient background */
    padding: 20px;  /* Optional: Add some padding for better visual appeal */
}

.text-white {
    color: var(--white);
}
