@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html,
body {
    background: #98bcf3;
}

.wrapper {
    margin: 60px 5px;
    width: 350px;
    background: #fff;
    border-radius: 5px;
}

.wrapper .title {
    line-height: 80px;
    background: #fff;
    text-align: center;
    border-radius: 5px 5px 0 0;
    color: #fff;
    font-size: 25px;
    font-weight: 600;
    padding-top: 10px;
    border-bottom: 1px solid black;
}

.wrapper form {
    padding: 30px 25px 25px 25px;
}

.wrapper form .row {
    height: 45px;
    margin-bottom: 15px;
    position: relative;
}

.wrapper form .row input {
    height: 100%;
    width: 100%;
    padding-left: 60px;
    outline: none;
    border-radius: 5px;
    border: 1px solid lightgrey;
    font-size: 16px;
    transition: all 0.3s ease;
}

form .row input:focus {
    border-color: #1b74e4;
    box-shadow: inset 0px 0px 2px 2px rgba(26.188, 256, 0.25);
}

.wrapper form .row i {
    position: absolute;
    width: 47px;
    height: 100%;
    color: #fff;
    font-size: 18px;
    background: #1b74e4;
    border: 1px solid #1b74e4;
    border-radius: 5px 0 0 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wrapper form .pass {
    margin: -8px 0 20px 0;
}

.wrapper form .pass a {
    color: #1b74e4;
    font-size: 17px;
    text-decoration: none;
}

.wrapper form .pass a:hover {
    text-decoration: underline;
}

.wrapper form .button input {
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    padding-left: 0px;
    background: #1b74e4;
    border: 1px solid #1b74e4;
    cursor: pointer;
}

form .button input:hover {
    background: #12876f;
}

.wrapper form .signup-link {
    text-align: center;
    margin-top: 20px;
}

.wrapper form .signup-link a {
    color: #1b74e4;
    font-size: 17px;
    text-decoration: none;
}

form .signup-link a:hover {
    text-decoration: underline;
}

.error {
    text-align: center;
    display: block;
    padding-bottom: 5px;
}

.error .success-bg {
    color: #45b15c;
}

.error .danger-bg {
    color: #ef2525;
}

@media only screen and (min-width: 768px) {
    .wrapper {
        width: 400px;
        position: relative;
        margin: 140px 0;
        margin-left: 170px;
    }
}

@media only screen and (min-width: 60em) {
    .wrapper {
        width: 400px;
        position: relative;
        margin: 100px 0;
        margin-left: 450px;
    }
}