@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.2/css/all.min.css');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    background-color: #fff;
}

main{
    width: 100%;
    height: 100vh;
    display: flex;
    height: 100vh;
    overflow: hidden;
}

.left {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f5f5f5;
}

.fb {
    position: absolute;
    top:30px;
    left: 30px;
    width: 60px;
    height: 60px;
}

.logo {
    width: clamp(400px,50vw, 1000px);
}

.title {
    font-size: 18px;
}

.right {
    width: clamp(300px,50vw, 1000px);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px;
    background-color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    border-left: 2px solid #ebe9e9;
    flex-wrap: wrap;
    position: relative;
}

input {
    width: 100%;
    height: 60px;
    font-size: 16px;
    border-radius: 15px;
    border: 1px solid #d8d4d4;
    padding: 0 20px;
    margin-bottom: 15px;
}

input:focus {
    outline: 1px solid #555;
}

button {
    width: 100%;
    height: 50px;
    border-radius: 50px;
    padding: 15px;
    border: none;
    background: none;
    margin-top: 15px;
    color: #FFF;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.login {
    background: rgb(22, 73, 241);
}

.forget {
    color: #181818;
}

.forget:hover,
.newac:hover {
    background: #f2f2f2;
}

.login:hover {
    background: rgb(14, 61, 212);
}

.newac {
    border: 1px solid rgb(22, 73, 241);
    color: rgb(22, 73, 241);
}


input::after {
    content: "👁️";
    position: relative;
    right: 10px;
    top:5px;
}

.right div{
    width: 100%;
}

.passbox {
    width: 100%;
    position: relative;
}

.passbox input {
    width: 100%;
    padding-right: 55px;
}

#on,#of {
    position: absolute;
    right: 20px;
    top: 40%;
    transform: translateY(-50%);
    font-size: 18px;
    color: #777;
    cursor: pointer;
    display: none;
}

@media (max-width:1124px) {

    .left {
        display: none;
    }

    main{
        margin:0 auto;
        max-width: 500px;
    }

    .right {
        width: 70vw;
        padding: 10px;
        margin: 0 auto;
        border-left: none;
    }

    .fb {
        left: 50%;
        top: clamp(1vh,7vh,10vh);
        transform: translateX(-50%);
        z-index: 999;
    }
}

.meta {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}