@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    align-items: center;
    font-family: 'Poppins', sans-serif;
}

/* Header Styles */
.header {
    position: fixed;
    width: 100%;
    height: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 100px;
    z-index: 99;
    background-color: transparent;
}

.header .nav a {
    text-decoration: none;
    color: #fff;
    font-size: 20px;
    margin-left: 20px;
    font-weight: 600;
}

.nav a:hover {
    border-bottom: 4px solid #fff;
    transition: .5s;
}

/* Section Styling */
.row {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 100px 0;
    gap: 20px;
    background-image: url('loginn.jpg'); /* Set your background image */
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

/* Contact Form */
.contact-form {
    background: rgba(252, 248, 248, 0.863); /* Semi-transparent background for glassmorphism effect */
    padding: 40px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
    color: black;
    box-shadow: 0 3px 20px rgba(42, 51, 40, 0.5);
    text-align: left;
}

.contact-form h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.input-group {
    margin-bottom: 20px;
    width: 100%;
}

.input-group input,
.input-group textarea {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #131212;
    border-radius: 5px;
    color: black;
}

.input-group textarea {
    height: 150px;
    resize: none;
}

.input-group label {
    display: block;
    margin-bottom: 5px;
    font-size: 1.1em;
}

button {
    width: auto;
    padding: 12px;
    background-color: #242423;
    border: none;
    border-radius: 7px;
    font-size: 18px;
    font-weight: bold;
    color: #f3ecec;
    cursor: pointer;
}

button:hover {
    background-color: #d8d7d5;
    transition: 0.3s;
    color: black;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .contact-form {
        width: 80%;
        padding: 30px;
    }

    .contact-form h2 {
        font-size: 2em;
    }
}

@media (max-width: 480px) {
    .contact-form {
        width: 100%;
        padding: 20px;
    }

    .contact-form h2 {
        font-size: 1.5em;
    }
}
