@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800;900&family=Roboto:wght@400;500;700&display=swap");

body {
    font-family: "Roboto", sans-serif;
    margin: 0;
    padding: 0;
    height: 100vh;
    background-color: #b3cade;
}

.contact-form-container {
    position: absolute;
    top: 1%;
    left: 50%;
    transform: translate(-50%, 1%);
    background: linear-gradient(to bottom, #9a95a7, #351f7b);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 100px 10px 40px rgba(79, 77, 77, 0.922);
    width: 100%;
    max-width: 650px;
}

h1 {
    text-align: center;
    color: #8ff3ea;
    margin-bottom: 10px;
}

.form-group {
    margin-bottom: 15px;
}

label {
    display: block;
    color: #9ce7f3;
    margin-bottom: 25px;
    font-weight: bold;
    text-align: center;
    font-size: 18px;
}

input,
textarea,
button {
    width: 90%;
    padding: 15px;
    margin: 0;
    border: 1px solid #cccccc81;
    border-radius: 6px;
    font-size: 16px;
}

input:focus,
textarea:focus {
    outline: none;
    border-color: #0004ffcb;
}

.btn {
    position: relative;
    top: 0;
    left: 30%;
    width: 250px;
    height: 50px;
    margin: 10px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn button {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(9, 3, 3, 0.05);
    box-shadow: 0 15px 15px rgba(0, 0, 0, 0.681);
    border-bottom: 1px solid rgba(255, 255, 255, 0.521);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 20px;
    letter-spacing: 1px;
    text-decoration: none;
    overflow: hidden;
    color: #c0f7ff;
    font-weight: 600;
    font-size: 18px;
    z-index: 1;
    transition: 0.3s;
    backdrop-filter: blur(15px);
}

.btn:hover button {
    letter-spacing: 3px;
    color: #ffb5b5;
}

.btn button::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(to left, rgba(255, 255, 255, 0.723), transparent);
    transform: skewX(45deg) translate(0);
    transition: 0.3s;
    filter: blur(0px);
}

.btn:hover button::before {
    transform: skewX(45deg) translate(200px);
}

.btn::before {
    content: "";
    position: absolute;
    left: 50%;
    transform: translatex(-50%);
    bottom: -5px;
    width: 30px;
    height: 10px;
    background: rgb(255, 7, 7);
    border-radius: 10px;
    transition: 0.5s;
    transition-delay: 0.5;
}

.btn:hover::before

/*lightup button*/
    {
    bottom: 0;
    height: 50%;
    width: 80%;
    border-radius: 25px;
}

.btn::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translatex(-50%);
    top: -5px;
    width: 30px;
    height: 15px;
    background: rgb(255, 0, 0);
    border-radius: 10px;
    transition: 0.4s;
    transition-delay: 0.4;
}

.btn:hover::after

/*lightup button*/
    {
    top: 0;
    height: 50%;
    width: 80%;
    border-radius: 25px;
}

.btn:nth-child(1)::before,
/*chnage 1*/
.btn:nth-child(1)::after {
    background: #ff1f71;
    box-shadow: 0 0 5px #ff1f71, 0 0 15px #ff1f71, 0 0 30px #ff1f71,
        0 0 60px #ff1f71;
}


.hidden {
    display: none;
}

#formMessage {
    margin-top: 25px;
    font-size: 16px;
    font-weight: 500;
    color: rgb(76, 241, 214);
    text-align: center;
}