.form-container{
    max-width:600px;
    margin:auto;
    margin-top:100px;
    margin-bottom:35px;
    background:rgba(255,255,255,.25);
    backdrop-filter:blur(15px);
    padding:40px 30px;
    border-radius:15px;
    box-shadow:0 10px 30px rgba(0,0,0,.1);
}

.form-container h2{
    text-align:center;
    margin-bottom:25px;
    font-size:46px;
    font-weight:700;
}

.form-container input,
.form-container textarea{
    width:100%;
    padding:12px;
    margin-bottom:15px;
    border:none;
    border-radius:8px;
    box-sizing:border-box;
    font-size:18px;
    font-weight:700;
}

.form-container textarea{
    resize:vertical;
    min-height:140px;
    font-size:18px;
    font-weight:700;
}

.form-container button{
    width:100%;
    padding:14px;
    background:#000;
    color:#fff;
    border:none;
    border-radius:8px;
    cursor:pointer;
    font-size:18px;
    font-weight:700;
}

.form-container button:hover{
    opacity:.9;
}

.success-message{
    text-align:center;
    color:green;
    margin-bottom:15px;
    font-weight:600;
}

.error-message{
    text-align:center;
    color:red;
    margin-bottom:15px;
    font-weight:600;
}

button[type="submit"]{
    width:100%;
    padding:14px;
    background:#000;
    color:#fff;
    border:2px solid #000;
    border-radius:8px;
    cursor:pointer;
    font-size:24px;
    font-weight:700;
    font-weight:bold;
    transition:all 0.3s ease;
}

button[type="submit"]:hover{
    background:#fff;
    color:#000;
    border:2px solid #000;
}