* {
    background: linear-gradient(to bottom, #0e0c18, #0e0c18);
    overflow-x: hidden;
    overflow-y: hidden;
    box-sizing: border-box; 
}

body {
    font-family: Arial, sans-serif;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;     
}

.back-icon {
    position: fixed;
    top: 45px;
    left: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border-width: 2px;
    border-color: #ecefef;
    border-style: solid; 
    color: white;
    font-size: 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    background: none;
    z-index: 10;
    backdrop-filter: blur(10px);
}
.back-icon i {
    background: none;
}
.back-icon:hover  {
    background-color: rgba(0, 255, 255, 0.72);
    color: black;
    border-color: #00ffff65;
}

.contact-container {
    display: flex;
    width: 90vw;
    max-width: 800px;
    padding: 20px;
    border: 4px solid rgb(46, 181, 181);
    position: relative;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'%3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%2300ffff' fill-opacity='0.24'%3E%3Cpath d='M0 38.59l2.83-2.83 1.41 1.41L1.41 40H0v-1.41zM0 1.4l2.83 2.83 1.41-1.41L1.41 0H0v1.41zM38.59 40l-2.83-2.83 1.41-1.41L40 38.59V40h-1.41zM40 1.41l-2.83 2.83-1.41-1.41L38.59 0H40v1.41zM20 18.6l2.83-2.83 1.41 1.41L21.41 20l2.83 2.83-1.41 1.41L20 21.41l-2.83 2.83-1.41-1.41L18.59 20l-2.83-2.83 1.41-1.41L20 18.59z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    background-repeat: repeat;
    z-index: 1;
}

.contact-left, .contact-right {
    padding: 20px;
    background: none;
}

.contact-left {
    width: 35%;
    border-right: 3px solid rgba(255, 255, 255, 0.741);
}

.contact-left h1 {
    font-size: 2rem;
    margin-bottom: 10px;
    background: none;
}

.contact-left p {
    font-size: 0.9rem;
    margin-bottom: 10px;
    line-height: 1.5;
    background: none;
}

.contact-left a {
    color: white;
    text-decoration: underline;
}

.contact-right {
    width: 65%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.stamp {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 60px;
    height: auto;
}

#contactForm {
    margin-top: 1rem;
    margin-right: 5rem;
    background: none;
}

label {
    font-size: 0.9rem;
    font-weight: bold;
    margin-top: 10px;
    margin-left: 1rem;
    background: none;
}

input, textarea {
    width: calc(100% - 2rem); 
    padding: 10px;
    margin: 5px 0 10px;
    margin-left: 1rem;
    margin-right: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #2d3e50;
    color: white;
    font-size: 0.9rem;
    transition: border-color 0.3s ease-in-out;
}

input:focus, textarea:focus {
    outline: none;
    border-color: #00FFFF; 
}

input:not(:placeholder-shown), textarea:not(:placeholder-shown) {
    background-color: #2d3e50; 
}

textarea {
    height: 80px;
    resize: none;
}

.required-note {
    font-size: 0.8rem;
    margin-top: 10px;
    margin-left: 1rem;
    background: none;
}

.send-button {
    float: right;
    color: white;
    border-style: solid;
    border-color: white;
    border-radius: 15px;
    border-width: 2px;
    padding: 10px 20px;
    font-size: 1rem;
    cursor: pointer; 
    text-decoration: none;
    transition: all 350ms ease-in-out;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    background-color: transparent; 
}

.send-button:hover {
    border-color: rgba(0, 204, 255, 0.7);
    font-weight: bold; 
}


@media (max-width: 767px) {
    .contact-container {
        flex-direction: column;
        width: 95%;
        padding: 10px;
        height: auto;
    }
    .contact-left, .contact-right {
        width: 100%;
        margin-bottom: 20px;
        box-sizing: border-box;
    }
    .contact-left {
        border-right: none;
        border-bottom: 3px solid rgba(255, 255, 255, 0.741);
    }
    .contact-right {
       margin-top: 0;
       padding-top: 0;
       margin-right: 0;
    }
    #contactForm{
        padding-right: 0;
        margin-right: 2rem;
    }
    .contact-left h1 {
        font-size: 1.5rem;
    }

    .contact-left p {
        font-size: 0.8rem;
    }

    .contact-right {
        width: 100%;
        margin-right: 0;
        padding-right: 0;
    }

    input{
        padding-bottom: 1rem;
        margin-bottom: 1rem;
    }
    .stamp {
        display: none;
        width: 40px;
    }
    
    .send-button {
        padding: 8px 15px;
        font-size: 0.9rem;
    }

    .back-icon {
        width: 35px;
        height: 35px;
        top: 24px;
        left: 15px;
        font-size: 1.2rem;
    }
}

