body {
    margin: 0;
    padding: 0;
    height: 100vh;
    background-color: var(--color-3);
}

.login_data_div {
    width: 35%;
    height: 500px;
    background-color: var(--color-9);
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 10px;
    border: 1px solid var(--color-0);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.logo_img {
    width: 100px;
    height: 100px;
}

.login_data_div h1 {
    font-family: Satoshi-Black, serif;
    font-size: 40px;
    margin-bottom: 10px;
}

.login_data_div p {
    font-family: Satoshi-Medium, serif;
    width: 50%;
    text-align: center;
    margin-top: 0;
    margin-bottom: 150px;
}

.login_button {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    background-color: #0088cc;
    border: none;
    border-radius: 30px;
    padding: 5px 10px;
    font-family: Satoshi-Medium, serif;
    color: var(--color-0);
    cursor: pointer;
    transition: 0.3s;
}

.login_button:hover {
    background-color: #005e8c;
}

.login_button img {
    width: 30px;
    height: 30px;
    margin-right: 20px;
}

@media (max-width: 768px) {
    .login_data_div {
        width: 98%;
        height: 98%;
    }

    .logo_img {
        width: 120px;
        height: 120px;
    }

    .login_data_div h1 {
        font-size: 40px;
    }

    .login_data_div p {
        font-size: 15px;
        width: 70%;
        margin-bottom: 40px;
    }

    .login_button {
        font-size: 13px;
        padding: 7px 20px;
        border-radius: 100px;
    }

    .login_button img {
        width: 30px;
        height: 30px;
    }
}