﻿
.formcontainer {
    background-color: white;
/*    padding: 30px 40px;*/
    border-radius: 6px;
   /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);*/
    width: 100%;
   /* max-width: 400px;*/
}

    .formcontainer h2 {
        margin-bottom: 20px;
        font-size: 20px;
    }

.formgroup {
    margin-bottom: 8px;
}

label {
    display: block;
    margin-bottom: 1px;
    font-weight: bold;
    font-size: 12px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
select {
    width: 100%;
    padding: 5px 10px;
    font-size: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

select {
    appearance: none;
}

.formactionsbtn {
    display: flex;
    /* justify-content: space-between; */
    margin-top: 20px;
    gap: 5px;
    position: absolute;
    bottom: 0;
    background: #fff;
    border-top: 1px solid #ddd;
    width: 100%;
    left: 0px;
    padding: 4px 16px;
}

    .formactionsbtn button {
        padding: 5px 20px;
        font-size: 13px;
        border: none;
        border-radius: 40px;
        cursor: pointer;
    }

.btn-submit {
    background-color: #5b5de2;
    color: white;
}

.btn-reset {
    background-color: #fcf4ff;
    color: #a82eeb;
    border: 1px solid #a82eeb !important;
}

 