﻿form {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

fieldset {
    padding: 10px;
    border-radius: 5px;
    box-shadow: 2px 2px 2px 2px rgb(0, 0, 0, .08);
    display: flex;
    gap: 10px;
}

.contact>input {
    margin: 5px 0;
}

input {
    height: 30px;
    padding: 2px;
    border-radius: 5px;
    border-width: thin;
}

div>label {
    display: block;
    height: 50%;
}

.email {
    display: none;
}

.tel {
    display: block;
}

.btns {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.btns input {
    width: 100px;
    background-color: white;
    border: 1px solid gray;
    border-radius: 5px;
    padding: 5px;
    cursor: pointer;
    box-shadow: 2px 2px 2px 2px rgb(0, 0, 0, .1);
    transition: ease all 0.3s;
}

.btns input:hover {
    background-color: rgb(240, 240, 240);
    border-color: red;
}

/* Responsive Design For Mobile*/
@media (min-width: 680px) {
    .tel {
        display: none;
    }

    .email {
        display: block;
    }
}