@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

.container {
    width: 100%;
    height: 100vh;
    background-image: url(background.jpg);
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: cover;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 85%;
    height: 130px;
    margin: auto;
}

.header-logo {
    font-size: 45px;
    color: white;
}

.header-navbar-container {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 50px;
}

.header-navbar {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 50px;    
}

.header-navbar-list {
    position: relative;
}

.header-navbar-list-hover {
    width: 0%;
    height: 3px;
    background-color: white;
    position: absolute;
    bottom: -2px;
    right: 0;
    transition: 0.2s ease width;
}

.header-navbar-list:hover .header-navbar-list-hover {
    width: 100%;
    left: 0;
}

.header-navbar-list-item {
    text-decoration: none;
    color: white;
    font-size: 24px;
    font-weight: 500;
}

.header-navbar-btn {
    border: 3px solid white;
    background-color: transparent;
    border-radius: 7px;
    color: white;
    font-size: 24px;
    font-weight: 500;
    padding: 11px 48px;
    cursor: pointer;
    transition: 0.5s ease;
}

.header-navbar-btn:hover {
    background-color: white;
    color: #0f0f0f;
}

.section1 {
    display: flex;
    align-items: center;
    justify-content: center;
    height: calc(100vh - 130px);
    width: 100%;
}

.section1-login {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 620px;
    width: 560px;
    background-color: transparent;
    backdrop-filter: blur(30px);
    border: 4px solid rgb(201, 201, 201, 0.5);
    border-radius: 30px;
    margin-bottom: 100px;
    position: relative;
}

.section1-login-close {
    position: absolute;
    top: 0;
    right: 0;
    height: 60px;
    width: 60px;
    border: none;
    background-color: #28323f;
    border-radius: 0px 30px 0px 30px;
    font-size: 32px;
    color: white;
    cursor: pointer;
}

.section1-login-header {
    position: absolute;
    top: 60px;
    font-size: 42px;
    color: #28323f;
}

.section1-login-inputs {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    row-gap: 50px;
}

.section1-login-input-container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.section1-login-input {
    width: 440px;
    height: 60px;
    border: none;
    border-bottom: 4px solid #28323f;
    background-color: transparent;
    z-index: 1;
    padding: 10px;
    font-size: 20px;
    color: #28323f;
    font-weight: 500;
}

.section1-login-input:focus {
    outline: none;
}

.section1-login-input-text {
    position: absolute;
    left: 10px;
    font-size: 20px;
    font-weight: 500;
    color: #28323f;
    pointer-events: none;
    transition: 0.2s ease;
}

.section1-login-inputs:hover .section1-login-input-text {
    top: -20px;
}

.section1-login-input-icon {
    position: absolute;
    right: 10px;
    color: #28323f;
    font-size: 22px;
}