:root{
    --primary: #10A6B9;
    --secondary: #0592AD;
}

*{
    box-sizing: border-box;
}

*, *::before, *::after{
    box-sizing: border-box;
}

body{
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: sans-serif;
    background: url(images/fondo.jpg);
    background-position: center;
    background-size: cover;
}

.login{
    background: #e5e5e5;
    width: 380px;
    border-radius: 5px;
}

.login2{
    background: #fff;
    width: 450px;
    border-radius: 5px;
}

.image{
    color: #ffffff;
    background: url(images/paisaje.jpg);
    height: 210px;
    background-size: cover;
    background-position: center -20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    clip-path: polygon(0 0, 100% 0, 100% 90%, 50% 100%, 0 90%);
    position: relative;
    border-radius: 5px
}

.image2{
    color: #ffffff;
    background: url(images/recover.jpg);
    height: 210px;
    background-size: cover;
    background-position: center 0px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    clip-path: polygon(0 0, 100% 0, 100% 90%, 50% 100%, 0 90%);
    position: relative;
    border-radius: 5px
}

.image:before{
    content: "";
    background: rgba(68,68,68,0.31);
    position: absolute;
    width: 425px;
    height: 210px;
    border-radius: 5px;
}

h2,i{
    position: relative;
}

h2{
    color: #fff;
}

form{
    height: 320px;
    display: block;
    flex-direction: column;
    justify-content: space-around;
    padding: 0px 15px;
    margin-top: 0em;
}

.row{
    --bs-gutter-x: -50px;
    --bs-gutter-y: 0;
}

form-icon{
    display: flex;
    flex-direction: column;
    position: relative;
}

label,
span{
    color: var(--primary);
}

span{
    position: absolute;
    bottom: 10px;
    left: 7px;
    transition: 0.2s all ease;
}

.form-control {
    display: block;
    width: 100%;
    padding: 0.2rem 0rem;
    font-size: 0.9375rem;
    font-weight: 400;
    line-height: 2.5;
    color: #000000;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #e9ecef;
    appearance: none;
    border-radius: 4px;
    box-shadow: unset;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    border-radius: 5px;
    text-indent: 20px;
}

.form-floating > .form-control, .form-floating > .form-select {
    height: calc(3.5rem + 2px);
    padding: 1rem 0.75rem;
}

.form-control:focus{
    border-bottom: 2px solid var(--secondary);
    color: var(--secondary);
    transition: 0.2s all ease;
}

.was-validated .form-control:valid, .form-control.is-valid {
    border-color: #00acc1;
}

.btn-info {
    width: 80%;
    position: absolute;
    bottom: 85px;
    padding: 8px;
    background: #10A6B9;
    color: #FFFFFF;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.2s all ease;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.15); 
    left: 50%;
    transform: translateX(-50%);
}

.btn-info:hover{
    background: #0592AD;
    color: #fff;
}

.btn-danger {
    width: 80%;
    position: absolute;
    bottom: 30px;
    padding: 8px;
    background: #fc4b6c;
    color: #FFFFFF;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.2s all ease;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.15); 
    left: 50%;
    transform: translateX(-50%);
}

.login-btn-container {
  width: 380px;
  margin-top: 60px;
  position: relative;
}

.btn-danger:hover{
    background: #FF3A52;
    color: #fff;
}



.form-group .input-group-prepend .input-group-text {
    width: 2.5rem;
}

.form-group .form-control {
    margin-left: 4.5rem;
}


div {
    display:contents;
}

.input-group-text {
    display: flex;
    align-items: center;
    padding: 0.375rem 0.75rem;
    font-size: 0.9375rem;
    font-weight: 400;
    line-height: 1.5;
    color: #000;
    text-align: center;
    white-space: nowrap;
    background-color: #f2f4f8;
    border: 1px solid #e9ecef;
    border-radius: 4px;
}

.page-wrapper {
    position: relative;
    background: #eef5f9;
    display: none;
    transition: 0.2s ease-in;
    border-radius: 5px;
}

.main-menu {
    /*margin: 0;*/
    list-style: none;
    margin-top: 0;
    margin-bottom: 0;
    /*padding: 0px 10px 0 0;*/
    padding-left: 0;
    padding: 15px;
    display: flex;
    /*font-weight: 500;*/
    flex-direction: column;
    /*flex-basis: auto;*/
    align-items: center;
    background-color: #00acc1;
    /*justify-content: space-between;*/
}

/*@media screen and (min-width: 768px) {
    .main-menu {
        flex-direction: row;
    }
}*/

.alert-success {
    color: #000202;
    background-color: #21c1d6;
    border-color: #21c1d6;
}

<!--  -->

