@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('img/background_ente.png') no-repeat;
    background-size: cover;
    background-position: center;
}

.wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    top: -200px;
    width: 400px;
    height: 275px;
    box-shadow: 0 0 20px #ffffff7a;
    border-radius: 8px;
    border: 1px solid rgba(202, 202, 202, 0.582);
    backdrop-filter: blur(10px);
    background: transparent;
}

h2 {
    position: relative;
    font-size: 1.5em;
    font-weight: 200;
    color: rgb(228, 228, 228);
    text-align: center;
    font-family:Blippo, fantasy ;
    margin-bottom: 23px;
}

.input-group {
    position: relative;
    width: 320px;
    margin-bottom: 30px;
}

.input-group input {
    width: 100%;
    height: 40px;
    font-size: 1em;
    color: rgb(228, 228, 228);
    padding: 0 10px 0 35px;
    background: #2b2b2b50;
    border: 1px solid rgb(228, 228, 228);
    outline: none;
    border-radius: 5px;
}

.input-group input::placeholder {
    color: rgb(228, 228, 228);
}

.input-group .icon {
    position: absolute;
    display: block;
    left: 10px;
    color: rgb(228, 228, 228);
    font-size: 1.2em;
    line-height: 45px;
}

.btn {
    position: relative;
    width: 100%;
    height: 40px;
    background: #2b2b2b50;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .4);
    font-size: 1.5em;
    color: rgb(228, 228, 228);
    font-weight: 800;
    cursor: pointer;
    border-radius: 5px;
    border: none;
    outline: 2px solid rgb(228, 228, 228);
    transition: .5s;
}

.btn:hover {
    background: #333333;
}

.logo_wrapper {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 430px;
}

.back-btn-wrapper {
    position: absolute;
    top:0;
    left:0;
    padding-top: 20px;
    padding-left: 20px;
}

.back-btn {
    display: flex;
    align-items: center;
    background: transparent;
    outline: 2px solid rgb(228, 228, 228);
    border-radius: 5px;
    border: transparent;
    box-shadow: 0 0 20px #ffffff7a;
    backdrop-filter: blur(15px);
    width: 35px;
    height: 35px;
    transition: 0.5s ease-in-out;
    overflow: hidden;
    white-space: nowrap;
}

.back-btn .back-icon {
    color: #ffffff;
    font-size: 1.5rem;
    margin-right: 5px;
    padding-top: 6px;
    padding-left: 6px;
    transition: margin-right 0.5s ease-in-out;
} 

.back-btn .hide {
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    color: #ffffff;
    font-weight: 600;
}

.back-btn:hover {
    width: 90px;
    justify-content: flex-start;
}

.back-btn:hover .hide {
    opacity: 1;
}

img {
    scale: 75%;
}
