@import url("colors.css");

.cntct-form {
    width: 70%;
    background-color: #ffffff;
    box-shadow: 0 0 20px var(--bs-primary);
    margin: 40px auto;
    border-radius: 15px;
}
.cntct-form h1 {
    text-align: center;
    color:var(--primCol);
    font-size: 24px;
    padding: 30px 0 20px 0;
    border-bottom: 1px solid #dee0e4;
}
.cntct-form form {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding-top: 25px;
}
.cntct-form form input[type="text"] {
    width: 80%;
    height: 50px;
    border: 1px solid #dee0e4;
    margin-bottom: 20px;
    padding: 0 15px;
}
.cntct-form form textarea {
    width: 80%;
    height: 180px;
    border: 1px solid #dee0e4;
    margin-bottom: 20px;
    padding: 0 15px;
}
.cntct-form form input[type="submit"] {
    width: 100%;
    padding: 15px;
   margin-top: 20px;
    background-color: var(--bs-primary);
    border: 0;
    cursor: pointer;
    font-weight: bold;
    color: #ffffff;
    transition: background-color 0.2s;
    border-radius: 0 0  15px 15px;
}
.cntct-form form input[type="submit"]:hover {
  background-color: var(--bs-primary);
    transition: background-color 0.2s;
}
