
a{
    text-decoration: none;
    color: white;
}
/* Nav */

.nav-border{
    border-radius: 30px;
}
.navi{
    background-color: #0F2C59;
    color: #fff;
    padding: 2%;
    margin: 2% 2%;
}
.nav{
    display: flex;
    justify-content: center;
}
.nav-link{
    color: #fff;
}
.nav-item{
    margin: 0 40%;
    color: white;

}
body {
    font-family: 'Arial', sans-serif;
    background-color: beige;
    margin: 0;
    padding: 0;
}

.form-container {
    width: 50%;
    margin: 30vh auto 4vh;
    background: linear-gradient(135deg, #74b9ff, #55efc4, #fdcb6e);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    color: #fff;
}

.form-container h1 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2.5em;
    font-weight: bold;
    color: #2d3436;
}

.form-container p {
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.2em;
    color: #2d3436;
}

form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

label {
    font-weight: bold;
    margin-bottom: 5px;
    font-size: 1.1em;
    color: #2d3436;
}

input[type="text"], 
input[type="email"], 
input[type="tel"], 
textarea, 
select {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-size: 1em;
    color: #2d3436;
    background-color: #fff;
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.1);
}

textarea {
    resize: vertical;
    min-height: 100px;
}

button {
    width: 100%;
    padding: 15px;
    background-color: #6c5ce7;
    border: none;
    border-radius: 8px;
    font-size: 1.2em;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

button:hover {
    background-color: #5f27cd;
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .form-container {
        width: 80%;
        padding: 30px 20px;
    }
}
