.header-imgs{
    width: 100px;
   
}

.header{
    gap: 10rem;
}
/* Global Styles */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
    color: #333;
    line-height: 1.6;
}

/* Header Styling */
header {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    background: white;
    padding: 16px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    width: 100vw;
}

.header {
    display: flex;
    justify-content: space-between;
    width: 80%;
    max-width: 1200px;
}

.header-imgs {
    height: 100px;
    object-fit: contain;
    width: 200px;
}

/* Typography */
/* Centering h1 */
h1 {
    position: relative;
    font-size: 28px;
    color: #0d6efd;
    text-align: center;
    margin-top: 24px;
    display: inline-block; 
}


.h1-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%; 
    margin-bottom:40px;
    text-align: center;
}

/* Underline effect using ::after */
h1::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px; 
    width: 100%; 
    height: 3px;
    background-color: #0d6efd;
    opacity: 0;
    transform: scaleX(0);
    transform-origin: center;
    animation: fadeUnderline 5s infinite ease-in-out;
}

/* Keyframes for fade-in and fade-out */
@keyframes fadeUnderline {
    0% {
        opacity: 0;
        transform: scaleX(0);
    }
    50% {
        opacity: 1;
        transform: scaleX(1);
    }
    100% {
        opacity: 0;
        transform: scaleX(0);
    }
}

h3 {
    font-size: 22px;
    color: #444;
    margin-top: 16px;
    border-left: 4px solid #0d6efd;
    padding-left: 8px;
}

p, ul {
    width: 80%;
    max-width: 1000px;
    margin: 12px auto;
    font-size: 16px;
    text-align: justify;
}

/* List Styling */
ul {
    list-style: none;
    padding-left: 0;
}

ul li {
    background: #fff;
    margin: 8px 0;
    padding: 10px 12px;
    border-left: 4px solid #0d6efd;
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
}

/* Links & Buttons */
a {
    text-decoration: none;
    color: #0d6efd;
    font-weight: bold;
    transition: color 0.3s ease-in-out;
}

a:hover {
    color: #034cb4;
}

button, .cta-button {
    display: inline-block;
    background: #0d6efd;
    color: white;
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease-in-out;
    text-align: center;
    margin-top: 10px;
}

button:hover, .cta-button:hover {
    background: #034cb4;
}

/* Footer Styling */
footer {
    background: linear-gradient(to right, #015f79, #78e1f4); 
    color: white;
    padding: 20px;
    text-align: center;
    margin-top: 30px;
}

footer p {
    margin: 0;
    font-size: 16px;
}

footer ul {
    display: flex;
    justify-content: center;
    padding: 0;
    gap: 15px;
    margin-top: 10px;
}

footer a {
    color: white;
    font-weight: bold;
    font-size: 16px;
}

footer a:hover {
    text-decoration: underline;
}
.buttons{
    text-align: center;
    align-items: center;
    justify-content: center;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .header {
        width: 95%;
        gap: 8px; 
    }

    .header-imgs {
        height: 100px;
        max-width: 100px;
    }
}

@media screen and (max-width: 480px) {
    .header {
        width: 100%;
        justify-content: space-evenly; 
    }

    .header-imgs {
        height: 80px;
        max-width: 80px;
    }
}
/* Form Container */
form {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    width: 60%;
    display: flex;
    margin-left: 20%;
    flex-direction: column;
    border-left: 5px solid #0d6efd;

}

h2 {
    text-align: center;
    color: #0d6efd;
    margin-bottom: 15px;
}

.success-message {
    color: green;
    font-weight: bold;
    text-align: center;
    margin-bottom: 15px;
}

.error-message {
    color: red;
    font-size: 14px;
    margin-top: 5px;
}

.form-group {
    display: flex;
    justify-content: space-between;
    gap: 15px;
}

/* Labels */
label {
    font-weight: bold;
    display: block;
    margin-top: 10px;
}

input, select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-top: 5px;
    font-size: 16px;
}

.input-field {
    width: 50%;
    display: flex;
    flex-direction: column;
}

/* File Inputs */
input[type="file"] {
    border: 1px solid #ccc; 
    padding: 5px;
}

/* Submit Button */
button {
    background: #0d6efd;
    color: white;
    font-size: 18px;
    padding: 12px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 20px;
    transition: background 0.3s ease-in-out;
}

button:hover {
    background: #034cb4;
}

/* Responsive Design */
@media screen and (max-width: 600px) {
    .form-group {
        flex-direction: column; /* Stack inputs on small screens */
    }
    
    .input-field {
        width: 100%;
    }

    form {
        margin-left: 4%;
        width: 90%;
    }
    
    input, select {
        font-size: 14px;
    }
    
    button {
        font-size: 16px;
    }
}

@media screen and (max-width: 480px) {
    form {
        margin-left: 2%;
        width: 95%;
    }

    input, select {
        font-size: 12px;
        padding: 6px;
    }

    button {
        font-size: 14px;
        padding: 8px;
    }
}
/* Fixed Position on Right */
.inscription {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 1000;
}

/* Neon Label Effect */
.neon-label {
    font-size: 22px;
    font-weight: bold;
    color: #297678;
    text-shadow: 0 0 5px #0df5fd, 0 0 10px #0dddfd, 0 0 15px #30e9f6;
    animation: neonGlow 1.5s infinite alternate;
    white-space: nowrap; /* Prevents text from wrapping */
}

/* Neon Glow Animation */
@keyframes neonGlow {
    from {
        text-shadow: 0 0 5px #69fcfc, 0 0 10px #6ffcf7;
    }
    to {
        text-shadow: 0 0 10px #017da6, 0 0 20px #006b79;
    }
}

/* Rounded Button */
.rounded-button {
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background-color: #04d3d6;
    color: white;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s ease-in-out, transform 0.2s ease-in-out;
}

/* Hover Effect */
.rounded-button:hover {
    background-color: #03aeb4;
    transform: scale(1.1);
}

/* Smooth Scroll Effect */
html {
    scroll-behavior: smooth;
}
