@import url('https://fonts.googleapis.com/css?family=Poppins:200,300,400,500,600,700,800,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

section{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
    overflow-x: hidden;
    overflow-y: hidden;
    display: flex;
}
.login h3{
    z-index: 1;
    flex-wrap: wrap;
    position: relative;
    text-align: center;
    font-size: 2.3rem;
    color: #000; 
    margin-bottom: 2rem;
}

section .bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.login {
    position: relative;
    padding: 60px;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(5.5px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    border-right: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    width: 500px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    /* border: 1px solid #fff; */
    /* gap: 30px; */
}

.login h2{
    position: relative;
    pointer-events: none;
    text-align: center;
    font-size: 2.5em;
    font-weight: 600;
    /* color: #43B7DE; */
    color: #2fc1ff;
    margin-bottom: 10px;
}

.login .inputbox {
    position: relative;
}

.login .inputbox input {
    position: relative;
    width: 100%;
    padding: 15px 20px;
    outline: none;
    font-size: 1.25em;
    border-radius: 5px;
    background: #fff;
    color: #43B7DE;
    border: none;
    margin-bottom: 30px;
}
.login .inputbox ::placeholder {
    color: #43B7DE;
}

.login .inputbox #btn {
    position: relative;
    border: none;
    outline: none;
    background: #43B7DE;
    color: #fff;
    cursor: pointer;
    font-size: 1.25em;
    font-weight: 500;
    transition: 0.5s;
}
.login .inputbox #btn:hover {
    /* background:#d64c42; */
    background:#12B1D0;

}
.login .group {
    display: flex;
    justify-content: space-between;
}

.login .group a {
    font-size: 1.25em;
    /* color: #43B7DE; */
    color: #2fc1ff;
    font-weight: 500;
    text-decoration: none;
}

.login .group a:nth-child(2) {
    text-decoration: underline;
}

.login p{
    display: flex;
    position: relative;
    justify-content: center;
    align-items: center;
    /* color: #fff; */
}


span{
background-color: #0078D7;
color: #fff;
}