@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body {
    position: relative;
    padding: 0;
    margin: 0;
    background: url(../images/bg-login.jpg) left top repeat;
    font-family: 'Poppins', sans-serif;
}

.login-block {
    max-width: 600px;
    margin: 40px auto 50px auto;
    text-align: center;
}
.flex-box {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}
.logo {
    margin-bottom: 65px;
}
.login-opt {
    width: 100%;
    max-width: 265px;
    text-decoration: none;
    background-color: #fff;
    color: #666;
    font-size: 18px;
    border: 2px solid #fff;
    border-radius: 35px;
    font-weight: 600;
    padding: 12px 10px;
    transition: ease-in-out .5s;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.login-opt:hover,
.login-opt:focus {
    color: #d231ff;
    border: 2px solid #d231ff;
}
.login-opt img {
    margin-right: 6px;
}
.app-store p {
    color: #fff;
    margin-bottom: 10px;
}

footer {
    background-color: #fff;
    text-align: center;
    width: 100%;
    font-size: 16px;
}
footer a {
    text-decoration: none;
    padding: 10px;
    display: inline-block;
}

footer a:hover {
    color: #0056b3;
}

@media (min-width: 768px) {
    .flex-box {
        justify-content: space-between;
    }
    .login-opt {
        margin-bottom: 0;
    }
    footer {
        position: fixed;
        left: 0;
        bottom: 0;
    }
}

@media (max-width:800px) and (orientation: landscape) {
    .flex-box {
        justify-content: space-between;
    }
}

@media (max-width:480px) {
    footer {
        font-size: 13px;
    }
    footer a {
        padding: 10px 5px;
    }
}

@media (max-width: 991px) {
    footer {
    background-color: #fff;
    text-align: center;
    width: 100%;
    font-size: 16px;
    position: fixed;
    left: 0;
    bottom: 0;
  }
}