@import url("https://fonts.googleapis.com/css2?family=Jura:wght@300..700&display=swap");

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Jura", sans-serif;
}

body {
    background: black;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 25px 12.5%;
    background: transparent;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}

.navbar a {
    position: relative;
    font-size: 16px;
    color: whitesmoke;
    text-decoration: none;
    font-weight: 500;
    margin-right: 30px;
}

.navbar a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 2px;
    background: whitesmoke;
    border-radius: 5px;
    transform: translateX(10px);
    opacity: 0;
    transition: .5s;
}

.navbar a:hover::after {
    transform: translateY(0);
    opacity: 1;
}

.search-bar {
    width: 250px;
    height: 45px;
    background: transparent;
    border: 2px solid whitesmoke;
    border-radius: 6px;
    display: flex;
    align-items: center;
}

.search-bar input {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    font-size: 16px;
    color: whitesmoke;
    padding-left: 10px;
}

.search-bar input::placeholder {
    color: whitesmoke;
}

.search-bar .button {
    width: 75px;
    height: 100%;
    background: transparent;
    border: none;
    outline: none;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
}

.search-bar .bx {
    font-size: 28px;
    color: white;
    background: transparent;
    border: none;
    outline: none;
    cursor: pointer;
}

.container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 75%;
    height: 700px;
    background: url(Images/Website_logo.png) no-repeat;
    background-color: white;
    background-size: 600px;
    background-position: left;
    background-position-x: 50px;
    border-radius: 10px;
    margin-top: 20px;
}

.container .content {
    position: absolute;
    top: 0;
    left: 0;
    width: 58%;
    height: 100%;
    background: transparent;
    padding: 80px;
    color: black;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}


.container .logo {
    font-size: 60px;
}

.container .logo .text {
    color: black;
    font-size: 80px;
    position: absolute;
    left: 90%;
    margin: 15px;
    top: 0;
    width: 750px;
}

.text-sci h2 {
    font-size: 40px;
    line-height: 0;
    color: black;
    position: relative;
    left: 129%;
    top: 0;
    text-align: justify;
}


.container .logreg-box {
    position: absolute;
    top: 0;
    right: 0;
    width: calc(100% - 58%);
    height: 100%;
}

.logreg-box .form-box {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background: transparent;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    color: black;
}

.form-box h2 {
    font-size: 45px;
}

.form-box .input-box {
    position: relative;
    width: 340px;
    height: 50px;
    border-bottom: 2px solid black;
    margin: 10px;
}

.form-box input {
    width: 100%;
    height: 100%;
    background: transparent;
    border: none;
    border: none;
    color: black;
    font-size: 25px;
}

.input-box label {
    position: absolute;
    padding-left: 5px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.input-box .icon i {
    position: absolute;
    top: 13px;
    right: 0;
    font-size: 28px;
    color: black;
}

.input-box:focus-within .icon i {
    opacity: 0;
    right: 50%;

}

.sign-in {
    padding-left: 29px;
}

.sign-in .btn {
    width: 300px;
    height: 20px;
    background-color: transparent;
    color: black;
    cursor: pointer;
}

.remember-forgot {
    text-align: center;
}

.remember-forgot input {
    width: 16px;
    align-self: center;
    cursor: pointer;
}

.sign-up {
    text-align: center;
}