/* 
This file contains the CSS styles for the Atreemo form to ensure it is visually appealing and consistent with the WordPress theme. 
*/

.atreemo-form-page {
    margin: 1.3rem auto;
    padding: 0 .65rem ;
}

.atreemo-form-page h2 {
    text-align: center;
    color: #333;
}

.atreemo-form-page label {
    display: block;
    margin-bottom: 5px;
}

.atreemo-form-page input[type="text"],
.atreemo-form-page input[type="email"],
.atreemo-form-page input[type="number"],
.atreemo-form-page select,
.atreemo-form-page textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #555;
    
}
.atreemo-form-page input[type="checkbox"],.atreemo-form-page input[type="radio"] {
    border: 1px solid #555;
}
.atreemo-form-page input[type="submit"] {
    background-color: #333;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.atreemo-form-page input[type="submit"]:hover {
    background-color: #111;
}
