* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Segoe UI Historic, Segoe UI, Helvetica, Arial, sans-serif;
}

.container {

    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.left-section {
    width: 66%;
    display: flex;
    border-bottom: 1px solid #c9c4c4;
    border-right: 1px solid #c9c4c4;
}

img {
    max-width: 90%;
    height: auto;
}

.logo-text {
    width: 35%;
    padding: 50px 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;

}

#text {
    padding: 0px 0px 0px 40px;
    font-size: 70px;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.08;
    color: black;
}

.fb-logo {
    padding: 0px 20px 0px 40px;
}

.text {
    color: #1877F2;
}

.right-section {
    width: 34%;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid #c9c4c4;
}

.login-form {
    width: 100%;
    margin: auto;
}

.login-form>h3 {
    margin-bottom: 25px;
}

.email>input {
    height: 60px;
    width: 100%;
    padding: 10px 16px;
    border-radius: 15px;
    border: 1px solid #c9c4c4;
    font-size: 15px;
}

.email>input:hover {
    border-color: rgb(54, 54, 54);
}

.password>input {
    height: 60px;
    width: 100%;
    padding: 10px 16px;
    border-radius: 15px;
    border: 1px solid #c9c4c4;
    margin-top: 10px;
    font-size: 15px;
}

.password>input:hover {
    border-color: rgb(54, 54, 54);
}

.login {
    height: 45px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: none;
    border-radius: 25px;
    margin-top: 20px;
    text-align: center;
    background-color: #1877F2;
    font-size: 15px;
    font-weight: bold;
}

.login>a {
    color: white;
    text-decoration: none;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login>a:hover {
    background-color: #1273f1;
}

.forgot-password>button {
    height: 45px;
    width: 100%;
    padding: 10px 16px;
    border: none;
    border-radius: 25px;
    margin-top: 10px;
    text-align: center;
    font-size: 15px;
    font-weight: bold;
    background-color: white;
}

.forgot-password>button:hover {
    background-color: #f5f3f3;
}



.new-account {
    height: 45px;
    width: 100%;
    border: 1px solid #1273f1;
    border-radius: 25px;
    margin-top: 50px;
    text-align: center;
    font-size: 15px;
    font-weight: bold;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.new-account a {
    text-decoration: none;
    color: #1273f1;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.new-account a:hover {
    background-color: #f5f3f3;

}

.meta-logo {
    text-align: center;
    margin-top: 20px;
}

@media (max-width: 1024px) {
    #text {
        font-size: 50px;
    }

    .right-section {
        padding: 40px;
    }

    footer {
        padding: 20px 40px;
    }
}

@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }

    .left-section,
    .right-section {
        width: 100%;
        border: none;
    }

    .left-section {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .logo-text {
        width: 100%;
        padding: 20px;
        align-items: center;
    }

    #text {
        font-size: 36px;
        padding: 0;
    }

    .login-img>img {
        width: 100%;
    }

    .right-section {
        padding: 20px;
    }

    footer {
        padding: 20px;
        text-align: center;
    }

    .languages,
    .links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    #text {
        font-size: 28px;
    }

    .email>input,
    .password>input {
        height: 50px;
        font-size: 14px;
    }

    .login>button,
    .forgot-password>button,
    .new-account {
        height: 40px;
        font-size: 14px;
    }

    footer {
        font-size: 13px;
    }

    .languages,
    .links {
        gap: 6px 10px;
    }

    .copyright {
        text-align: center;
    }
}

footer {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px;
}

footer a {
    color: #7c7c7c;
    text-decoration: none;
    font-size: 14px;
}

.languages,
.links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 12px;
    margin-bottom: 10px;
    line-height: 1.6;
}

.languages a {
    padding: 0 15px;
}

.links {
    padding: 0 15px;
    line-height: 1.6;
}

.copyright {
    font-size: 15px;
    padding: 0 15px;
    color: #7c7c7c;
}