
body {
    background-color: rgba(243, 239, 235, 0.9);
    font-family: 'Poppins',sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.formular {
    background-color: #ffffff;
    width: 100%;
    max-width: 400px;
    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 {
    margin-top: 0;
    margin-bottom: 25px;
    font-size: 24px;
    color: #1a1a1a;
    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: #4a4a4a;
}

input[type="text"],
input[type="password"] {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #dfe1e5;
    border-radius: 8px;
    font-size: 16px;
    box-sizing: border-box;
    transition: border 0.2s;
    outline: none;
}

input[type="text"]:focus,
input[type="password"]: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*/
}
#message {
    padding: 0px 40px 0px 0px;
}

#mail-status {
    padding: 12px 20px;
    width: 100%;
    display: none;
    font-size: 1em;
    font-family: "Georgia", Times, serif;
    color: rgb(40, 40, 40);
}

.error {
    background-color: #F7902D;
    margin-bottom: 40px;
}

.success {
    background-color: #48e0a4;
}
.g-recaptcha {
    margin: 0 0 25px 0;
}