* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: black;
}

.ball {
    position: absolute;
    border-radius: 100%;
    opacity: 0.7;
}

/*---------------------------------------------*/
a {
    font-size: 14px;
    line-height: 1.7;
    color: #666666;
    margin: 0px;
    transition: all 0.4s;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
}

a:focus {
    outline: none !important;
}

a:hover {
    text-decoration: none;
    color: #57b846;
}

/*---------------------------------------------*/
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0px;
}

p {
    font-size: 14px;
    line-height: 1.7;
    color: #666666;
    margin: 0px;
}

ul,
li {
    margin: 0px;
    list-style-type: none;
}

/*---------------------------------------------*/
input {
    outline: none;
    border: none;
}

textarea {
    outline: none;
    border: none;
}

textarea:focus,
input:focus {
    border-color: transparent !important;
}

/*---------------------------------------------*/
button {
    outline: none !important;
    border: none;
    background: transparent;
}

button:hover {
    cursor: pointer;
}

iframe {
    border: none !important;
}

/*---------------------------------------------------*/

.flex-container {
    width: 100%;
    min-height: 100%;
    padding: 50px;

    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.smooth-rect-container {
    background: #969696;
    border-radius: 10px;
    overflow: hidden;

    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;

    padding: 80px 50px 80px 50px;
}

/*------------------------------------------------------------------
  [  ]*/
.contact-form {
    width: 400px;
}

.form-title {
    display: block;
    font-size: 24px;
    color: #333333;
    line-height: 1.2;
    text-align: center;
    padding-bottom: 44px;
}

input.form-input {
    height: 50px;
    border-radius: 25px;
    padding: 0 30px;
}

textarea.form-input {
    min-height: 150px;
    border-radius: 25px;
    padding: 12px 30px;
}

/*---------------------------------------------*/
.form-input-div {
    position: relative;
    width: 100%;
    z-index: 1;
    margin-bottom: 20px;
}

.form-input {
    display: block;
    width: 100%;
    background: #e6e6e6;
    font-size: 15px;
    line-height: 1.5;
    color: #666666;
}

#email-error {
    position: absolute;
    top: 100%;
    left: 2px;
    font-size: 15px;
    font-weight: 400;
    color: red;
}

/*---------------------------------------------*/
.form-btn-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.form-btn {
    min-width: 193px;
    height: 50px;
    border-radius: 25px;
    background: yellow;
    font-size: 15px;
    line-height: 1.5;
    color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 25px;

    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
}

.form-btn i {
    margin-left: 7px;

    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
}

.form-btn:hover {
    background: #333333;
    color: white;
}

.form-btn:hover i {
    -webkit-transform: translateX(10px);
    -moz-transform: translateX(10px);
    -ms-transform: translateX(10px);
    -o-transform: translateX(10px);
    transform: translateX(10px);
}

/*------------------------------------------------------------------
  [ Responsive ]*/

@media (max-width: 1200px) {
    .contact-form {
        width: 44%;
    }
}

@media (max-width: 992px) {
    .smooth-rect-container {
        padding: 90px 80px 88px 90px;
    }

    .contact-form {
        width: 55%;
    }
}

@media (max-width: 768px) {
    .smooth-rect-container {
        padding: 90px 80px 88px 80px;
    }

    .contact-form {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .smooth-rect-container {
        padding: 90px 15px 88px 15px;
    }
}
