body {/* background */
    background-color: rgba(240, 238, 235, 0.9);
    font-family: 'Poppins', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    padding: 20px 0;
}
.formular {/* Chenar alb */
    background-color: #ffffff;
    width: 100%;
    max-width: 450px;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    box-sizing: border-box;
    text-align: center;
}
.formular h1 {  /* CONTACT */
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 24px;
    color: #221e1e;
    font-weight: 700;
}
form table { 
    width: 100%;
    border-collapse: collapse;
}
form tr {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
    text-align: left;
}
form td {
    display: block;
    padding: 0;
}
form tr td:first-child {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 6px;
    color: #221e1e;
}
input[type="text"],
input[type="email"],
input[type="password"],
textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #dfe1e5;
    border-radius: 8px;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
    transition: border 0.2s;
    outline: none;
    resize: vertical;
}
input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
    border-color: rgb(255, 127, 80); /*CORAL ORANGE*/

    box-shadow: 0 0 0 3px rgba(90, 49, 244, 0.1);
}
input[type="submit"] {
    width: 100%;
    background-color:rgb(255, 127, 80); /*CORAL ORANGE*/

    color: white;
    padding: 14px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 10px;
    transition: background-color 0.2s;
}
input[type="submit"]:hover {
    background-color:rgb(250, 106, 53); /*HOVER COLOR*/
}
.g-recaptcha {
    margin: 10px 0 25px 0;
    display: flex;
    justify-content: center;
}