/*
 * Created By : Ahmad Windi Wijayanto
 * Email : ahmadwindiwijayanto@gmail.com
 * Website : https://whendy.net
 * github : https://github.com/whendy
 * LinkedIn : https://www.linkedin.com/in/ahmad-windi-wijayanto/
 *
 */

.contact-form .contact-title h4 {
    color: #007baf;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.contact-form .contact-title h2 {
    font-size: 40px;
    font-weight: 400;
    margin-top: 10px;
}
.contact-form .form-group {
    position: relative;
    margin-bottom: 24px;
}
.contact-form .form-control {
    border: none;
    border-bottom: 1px solid #ccc;
    border-radius: 0;
    padding-left: 0;
    padding-right: 0;
    font-size: 16px;
    background: transparent;
    box-shadow: none;
    width: 100%;
}
.contact-form .form-control:focus {
    border-bottom: 2px solid #007baf;
    box-shadow: none;
}
.contact-form .form-label {
    position: absolute;
    top: 5px;
    left: 0;
    font-size: 16px;
    color: #999;
    transition: all 0.2s ease;
    pointer-events: none;
}
.contact-form .form-control:focus + .form-label,
.contact-form .form-control:not(:placeholder-shown) + .form-label {
    top: -10px;
    font-size: 12px;
    color: #007baf;
}
.contact-form .send-message {
    color: #007baf;
    font-weight: bold;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    margin-top: 50px;
    border: 1px solid #007baf;
    padding: 20px;
}
.contact-form .send-message:hover {
    color: #005f8f;
    border: 1px solid #005f8f;
}
.contact-form .send-message i {
    margin-left: 8px;
}
