* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif !important;
}

.wrapper {
    width: 100%;
    height: 100vh;
    background: linear-gradient(150deg,#281483 15%,#8f6ed5 70%,#d782d9 94%);
}

.wrapper-row {
    width: 100%;
    height: 100vh;
}

.wrapper-col {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.wrapper-form-container {
    width: 380px;
    height: auto;
    background-color: rgb(255, 255, 255);
    box-shadow: 0 1px 2px rgba(0, 0, 0, .075);
}

.form-header {
    width: 380px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top:12px;
}

.form-body {
    width: 380px;
    height: auto;
    padding: 25px;
}


.form-group {
    width: 100%;
}

.form-group input {
    width: 100%;
    padding: 8px;
    border: 1px solid #cad1d7;
    border-radius: 4px;
    line-height: 1.5;
    color: #9ca0a3;
}

.form-group input::placeholder {
    color: rgb(176, 181, 186);
}

.form-group input:focus {
    outline: none;
    border-color: #5E72E4;
}

.form-btn {
    border: 1px solid #5E72E4;
    background-color: #5E72E4;
    padding: 10px 20px;
    font-size: 14px;
    color: rgb(255, 255, 255);
}


.form-btn:hover {
    cursor: pointer;
}


.form-btn:active {
    background-color: #3951db;
}

.form-btn:focus {
    outline: none;
}

.form-header-text {
    font-size: 21px;
    color: #5E72E4;
    margin-top: 15px;
}

.complete {
    color: #5E72E4;
    font-weight: bold;
}

.wrapper-img {
    position: absolute;
    width: 480px;
    left: 320px;
}

.wrapper-full {
    width: 100%;
    height: 100vh;

    display: flex;
    justify-content: center;
    align-items: center;

    position: relative;
}

.shape {
    position: absolute;
    background-color: rgba(255,255,255,.1);
    border-radius: 50%;
}

.shape-50 {
    top: 15%; 
    left: 25%;
    width: 150px;
    height: 150px;
}

.shape-75 {
    top: 80%;
    right: 30%;
    width: 150px;
    height: 150px;
}

.shape-25 {
    top: 80%;
    right: 25%;
    width: 50px;
    height: 50px;
}

.shape-150 {
    width: 150px;
    height: 150px;
    top: 5%;
    right: 40%;
}

.shape-75 {
    width: 75px;
    height: 75px;
    top: 5%;
    right: 5%;
}

.shape-95 {
    width: 95px;
    height: 95px;
    bottom: 15%;
    left: 15%;
}

.shape-180 {
    width: 180px;
    height: 180px;
    top: 35%;
    right: 10%;
}

.shape-115 {
    width: 115px;
    height: 115px;
    top: 35%;
    left: 2%;
}

.alert-success {
    background-color: #d782d9 !important;
    border-color: #d782d9 !important;
    color: rgb(255, 255, 255);
}

@media only screen and (max-width: 768px) {
    .wrapper-img {
        display: none;
    }
    .wrapper-row {
        margin: 0;
    }

    .shape-180 {
        display: none;
    }

    .shape-115  {
        display: none;
    }

    .shape-50 {
        left: 60%;
    }
}

@media only screen and (max-width: 1024px) {
    .wrapper-img {
        width: 380px;
        left: -40px;
    }
}

@media only screen and (min-width: 1025px) and (max-width: 1440px) {
    .wrapper-img {
        width: 480px;   
        left: 5px;
      }
}

@media only screen and (min-width: 1441px)
{
    .wrapper-img {
        width: 460px;
        left: 240px;
    }
}

@media only screen and (max-width: 320px)
{
    .wrapper-form-container {
        width: 100%;
        height: auto;
    }

    .form-header {
        width: 100%;
        height: 70px;
    }

    .form-body {
        width: 100%;
        height: 310px;
    }

    .shape-180 {
        display: none;
    }

    .shape-115  {
        display: none;
    }

    .shape-50 {
        left: 50%;
    }
    
    .alert-success {
        width: 100% !important;
        top: 0 !important;
    }
    
    .complete {
        display: none;
    }
}