* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    background-image: url(images/bg-image.jpg);
    font-family: "Jost", sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
    overflow-x: hidden;
}
.form-group {
    color: #fff;
}
.container-contact {
    max-width: 500px;
    width: 100%;
    background: rgba(23, 23, 24, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: fadeIn 0.5s ease-out;
}
h1 {
    color: #92794b;
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    width: 100px;

}
h1:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    width: 50px;
    height: 3px;
    background: rgb(255, 255, 255);
    border-radius: 2px;
}
form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.form-group {
    position: relative;
}
input, textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #92794b;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
}
input:focus, textarea:focus {
    outline: none;
    border-color: #92794b;
    box-shadow: 0 0 0 3px rgba(23, 23, 24, 0.8);
}
label {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #000000;
    pointer-events: none;
    transition: all 0.3s ease;
}
textarea + label {
    top: 20px;
    transform: none;
}
input:focus + label, textarea:focus + label,
input:not(:placeholder-shown) + label,
textarea:not(:placeholder-shown) + label {
    top: -10px;
    left: 10px;
    font-size: 0.8rem;
    padding: 0 5px;
    background-color: #92794b;
    border-radius: 5px;
}
textarea {
    resize: vertical;
    min-height: 150px;
}
button {
    background-color: #ffffff;
    color: black;
    border: none;
    padding: 15px;
    border-radius: 10px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}
button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translateX(-50%, -50%);
    transition: all 0.5s ease;
}
button:hover::before {
    width: 300px;
    height: 300px;
}
button:hover {
    background-color: #92794b;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.floating-shapes  {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}
.shape {
    position: absolute;
    opacity: 0.1;
    animation: float 6s infinite;
}
.shape:nth-child(1) {
    width: 50px;
    height: 50px;
    background-color: #000000;
    top: 20%;
    left: 10%;
    clip-path: polygon(50%, 0%, 100%, 100%, 100%);
}
.footer-contact {
    width: 100%;
    text-align: center;
    align-items: center;
    color: white;
}
.footer-contact a {
    color: #fff;
    transition: 0.4s;
    size: 10vh;
}
.footer-contact a:hover {
    color: #92794b;
}