@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: url('images/sp.jpg') no-repeat;
    background-size: cover;
    background-position: center;
}

.form-message {
    width: 320px;
    margin: -20px 0 15px;
    padding: 8px 10px;
    border-radius: 5px;
    font-size: 0.85em;
    text-align: center;
    display: none;
}

.form-message.show {
    display: block;
}

.form-message.error {
    background: rgba(255, 80, 80, 0.25);
    color: #ffd6d6;
    border: 1px solid rgba(255, 80, 80, 0.5);
}

.form-message.success {
    background: rgba(80, 220, 150, 0.2);
    color: #d3ffe9;
    border: 1px solid rgba(80, 220, 150, 0.5);
}

.icon i {
    font-style: normal;
}

.wrapper {
    background-color: #0000005e;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 400px;
    height: 500px;
    box-shadow: 0 0 60px #000;
    border-radius: 10px;
}

h2 {
    font-size: 2em;
    color: #ffffff;
    text-align: center;
}

.input-group {
    position: relative;
    width: 320px;
    margin: 30px 0;
}

.input-group input {
    width: 100%;
    height: 40px;
    font-size: 1em;
    color: #fff;
    padding: 0 10px 0 35px;
    background: rgba(255, 255, 255, 0.253);
    border: 1px solid #fff;
    outline: none;
    border-radius: 5px;
}

.input-group input::placeholder {
    color: rgb(255, 255, 255);
}

.input-group .icon {
    position: absolute;
    display: block;
    left: 10px;
    color: #fff;
    font-size: 1.2em;
    line-height: 45px;
}

.forgot-pass {
    margin: -15px 0 15px;
}

.forgot-pass a {
    color: #fff;
    font-size: .9em;
    text-decoration: none;
}

.forgot-pass a:hover {
    text-decoration: underline;
}

.btn {
    position: relative;
    width: 100%;
    height: 40px;
    background: #00c2a7;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .4);
    font-size: 1em;
    color: #fff;
    font-weight: 500;
    cursor: pointer;
    border-radius: 5px;
    border: none;
    outline: none;
    transition: .5s;
}

.btn:hover {
    background: #05d7d7;
    color: #00c2a7;
}

.sign-link {
    font-size: .9em;
    text-align: center;
    margin: 25px 0;
}

.sign-link p {
    color: #fff;
}

.sign-link p a {
    color: #00c2a7;
    text-decoration: none;
    font-weight: 600;
}

.sign-link p a:hover {
    text-decoration: underline;
}
.none {
    color: whitesmoke;
    text-decoration: none;
}
