/*
Theme Name: Point ASL
Template: hello-elementor
Author: Fernando Gonzalez
Tags: accessibility-ready,flexible-header,custom-colors,custom-menu,custom-logo,featured-images,rtl-language-support,threaded-comments,translation-ready
Version: 3.0.2.1717280997
Updated: 2024-06-01 22:29:57

*/

.form-container.point-form {
    background-color: #fff;
    padding: 20px 30px 5px 30px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 520px;
}

.point-form form h2 {
    font-size: 16px;
    margin-bottom: 20px;
    color: #1d2243;
}

.point-form form h2 strong {
    color: #1d2243;
}

.point-form .form-row {
    display: flex;
    gap: 10px;
}

.point-form form input,
.point-form form select {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    /*border: 1px solid #ccc;*/
	border: none;
    border-radius: 4px;
    box-sizing: border-box;
	background-color: #ebebeb;
}

.point-form form select {
    height: 40px;
}

.point-form form button {
    width: 100%;
    padding: 10px;
    background-color: #DB2A3A;
    border: none;
    border-radius: 4px;
    color: #fff;
    font-size: 18px;
	font-weight: 600;
    cursor: pointer;
	margin-top: 15px;
}

.point-form form button:hover {
    background-color: #DB2A3A;
}

.point-form form button:focus {
    background-color: #ba202e;
}

#form-btn {
    transition: all .3s ease;
    cursor: pointer;
}

#form-btn .arrow {
    position: relative;
    margin: 0 0 0 2px;
    transition: all .3s ease;
    position: absolute;
    opacity: 0;
}

#form-btn:hover .arrow {
    transform: translate(3px);
    opacity: 1;
}