﻿/*fondo animado*/
body {
    height: 100vh;
    background: linear-gradient(90deg,#1B4F36,#309866);
    display: flex;
    justify-content: center;
    align-items: center;
   margin: 0;
}

* {
    margin: 0px;
    padding: 0px;
}




.area {
    background: #1B4F36;
    background: -webkit-linear-gradient(to left, #309866, #1B4F36);
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.circles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

    .circles li {
        position: absolute;
        display: block;
        list-style: none;
        width: 20px;
        height: 20px;
        background: rgba(255, 255, 255, 0.2);
        animation: animate 25s linear infinite;
        bottom: -150px;
    }

        .circles li:nth-child(1) {
            left: 25%;
            width: 80px;
            height: 80px;
            animation-delay: 0s;
        }


        .circles li:nth-child(2) {
            left: 10%;
            width: 20px;
            height: 20px;
            animation-delay: 2s;
            animation-duration: 12s;
        }

        .circles li:nth-child(3) {
            left: 70%;
            width: 20px;
            height: 20px;
            animation-delay: 4s;
        }

        .circles li:nth-child(4) {
            left: 40%;
            width: 60px;
            height: 60px;
            animation-delay: 0s;
            animation-duration: 18s;
        }

        .circles li:nth-child(5) {
            left: 65%;
            width: 20px;
            height: 20px;
            animation-delay: 0s;
        }

        .circles li:nth-child(6) {
            left: 75%;
            width: 110px;
            height: 110px;
            animation-delay: 3s;
        }

        .circles li:nth-child(7) {
            left: 35%;
            width: 150px;
            height: 150px;
            animation-delay: 7s;
        }

        .circles li:nth-child(8) {
            left: 50%;
            width: 25px;
            height: 25px;
            animation-delay: 15s;
            animation-duration: 45s;
        }

        .circles li:nth-child(9) {
            left: 20%;
            width: 15px;
            height: 15px;
            animation-delay: 2s;
            animation-duration: 35s;
        }

        .circles li:nth-child(10) {
            left: 85%;
            width: 150px;
            height: 150px;
            animation-delay: 0s;
            animation-duration: 11s;
        }



@keyframes animate {

    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
        border-radius: 0;
    }

    100% {
        transform: translateY(-1000px) rotate(720deg);
        opacity: 0;
        border-radius: 50%;
    }
}
/*fin fondo animado*/
.form-container {
    font-family: 'Raleway', sans-serif;
    padding-right: 15px;
    position: relative;
    z-index: 1;
}

    .form-container:before {
        content: '';
        position: absolute;
        left: 0;
        right: 0;
        top: 20%;
        bottom: 20%;
        z-index: -1;
    }

    .form-container .title {
        color: #333;
        background-color: #fff;
        font-size: 18px;
        font-weight: 600;
        text-transform: uppercase;
        padding: 15px 50px 16px 20px;
        margin: 0;
        display: inline-block;
        clip-path: polygon(0 0, 80% 0%, 100% 100%, 0% 100%);
    }

        .form-container .title i {
            color: #792D3B;
            margin-right: 10px;
        }

    .form-container .form-horizontal {
        background: #fff;
        padding: 30px 0 0;
        box-shadow: 10px 10px 10px rgb(0,0,0,0.1);
    }




.form-horizontal .form-group {
    padding: 0 25px;
    margin: 0 0 20px;
}

    .form-horizontal .form-group:last-of-type {
        margin-bottom: 30px;
    }

    .form-horizontal .form-group label {
        font-size: 13.5px;
        text-transform: uppercase;
    }

        .form-horizontal .form-group label.check-label {
            text-transform: none;
            vertical-align: middle;
            display: inline-block;
        }

.form-horizontal .form-control {
    color: #111;
    background: #F5F5F5;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px;
    height: 33px;
    padding: 6px 12px;
    border-radius: 0;
    border: none;
    box-shadow: none;
    border-left: 1px solid #e7e7e7;
}

    .form-horizontal .form-control:focus {
        background-color: rgba(216, 63, 88, 0.1);
        box-shadow: none;
    }

.form-horizontal .checkbox {
    height: 14px;
    width: 14px;
    min-height: auto;
    margin: 0 3px 0 0;
    border: 1px solid #999;
    cursor: pointer;
    display: inline-block;
    position: relative;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    transition: all 0.3s ease;
}

    .form-horizontal .checkbox:before {
        content: '';
        height: 7px;
        width: 14px;
        border-bottom: 3px solid #792D3B;
        border-left: 3px solid #792D3B;
        opacity: 0;
        transform: rotate(-45deg);
        position: absolute;
        left: 1px;
        top: 0;
        transition: all 0.3s ease;
    }

    .form-horizontal .checkbox:checked {
        border-color: #792D3B;
    }

        .form-horizontal .checkbox:checked:before {
            opacity: 1;
        }

    .form-horizontal .checkbox:not(:checked):before {
        opacity: 0;
    }

    .form-horizontal .checkbox:focus {
        outline: none;
    }

.form-horizontal .signup {
    color: #fff;
    background-color: #309866;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 0;
    display: block;
    transition: all 0.3s ease 0s;
}

    .form-horizontal .signup:hover,
    .form-horizontal .signup:focus {
        background-color: #2db875;
    }
