body {
    background-color: black;
    color: white;
    font-family: Arial, sans-serif;
    margin: 0;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("../Images/bg.png");
    background-size: cover;
    filter: blur(4px);
    z-index: -1;
}

body.white::before {
    filter: blur(4px) invert(1);
}

.contact-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 50px auto;
    max-width: 1200px;
}

h1 {
    font-size: 36px;
    color: #d5d5d5;
    font-family: "Concert One", sans-serif;
}

p {
    font-size: 20px;
    margin-top: 20px;
    font-family: "Slabo 27px", serif;
}

.contact-form {
    display: flex;
    margin-top: 20px;
    width: 1000px;
    height: 400px;
    color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}
.left, .right {
    padding: 20px;
}
.left {
    flex: 1;
    background: #333;
}
.right {
    flex: 1;
    background: #222;
}
h2 {
    margin-bottom: 10px;
}
.error-message {
    display: none;
    justify-content: center;
    align-items: center;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 5px;
    height: 30px;
}

.error {
    background: #ffcccc;
    color: #900;
}
.success {
    background: #ccffcc;
    color: #090;
}
input, textarea {
    width: 100%;
    border-radius: 5px;
    padding: 10px;
    margin-bottom: 10px;
    border: none;
}
textarea {
    height: 90px;
}

input {
    height: 35px;
}

button {
    justify-content: center;
    align-items: center;
    width: 100%;
    border-radius: 5px;
    padding: 10px;
    height: 40px;
    background: orange;
    border: none;
    color: #333;
    font-size: 16px;
    cursor: pointer;
}

button:hover {
    background: darkorange;
}

button:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.right p i {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background-color: #333;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    color: white;
    margin-right: 10px;
}


.right p {
    color: white;
    margin: 10px 0;
}

.right i {
    margin-right: 10px;
}

.right a {
    color: #999;
    text-decoration: none;
}

.right a:hover {
    text-decoration: underline;
}

@media (max-width: 1100px) {
    .contact-form {
        width: 100%;
        height: auto;
        flex-direction: column;
        margin-bottom: 25px;
    }

    .left, .right {
        flex: none;
        width: 100%;
    }
}