﻿*,
*:before,
*:after {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
/*
body {
    background-color: #080710;
}*/

.background {
    width: 430px;
    height: 520px;
    position: absolute;
    transform: translate(-50%,-50%);
    left: 50%;
    top: 50%;
}

    .background .shape {
        height: 200px;
        width: 200px;
        position: absolute;
        border-radius: 50%;
    }

.shape:first-child {
    background: linear-gradient( #1845ad, #23a2f6 );
    left: -80px;
    top: -80px;
}

.shape:last-child {
    background: linear-gradient( to right, #ff512f, #f09819 );
    right: -30px;
    bottom: -80px;
}

form {
    width: 540px;
    background-color: white;
    margin: auto;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(8,7,16,0.6);
    padding: 50px 35px;
}

    form * {
        font-family: 'Poppins',sans-serif;
        /*   color: black;*/
        letter-spacing: 0.5px;
        outline: none;
    }

    form h3 {
        font-size: 32px;
        font-weight: 500;
        line-height: 42px;
        text-align: center;
    }

.forgot_pass {
    width: 540px;
    background-color: white;
    margin: auto;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(8,7,16,0.6);
    padding: 50px 35px;
}

.link-Css {
    border-top: 4px solid #B7DCE1;
    padding:5px 10px 10px 10px;
}

input {
    background-color: #d3d3d3;
}

::placeholder {
    color: gray;
}

@media (max-width: 767px) {
    .background {
        width: 80%;
        height: 50%;
    }

    form {
        width: 90%;
        top: 30%;
        padding: 0rem;
        /*  border: none; */
        box-shadow: 0 0 10px rgba(8,7,16,0.6);
    }

    .forgot_pass {
        width: 90%;
        top: 30%;
        padding: 0rem;
        /*  border: none; */
        box-shadow: 0 0 10px rgba(8,7,16,0.6);
    }
}
