body {
    background: #061525;
    margin: 0px;
    padding: 0px;
}

.heading-logo {
    font-family: "Nata Sans", sans-serif;
    font-size: 28px;
    font-weight: 350;
    width: 550px;
    color: white;
    filter: drop-shadow(0px 0px 150px white);
}

.page {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    max-width: 1100px;
    margin: 0 auto;
}

.leftside-logo {
    flex: 1;
    min-width: 400px;
    margin-right: 50px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    position: relative;
    bottom: 40px;
}

.fblogo {
    margin: 0px;
    padding: 0px;
    position: relative;
    top: 32px;
    margin-left: -27px;
    filter: drop-shadow(0px 0px 3px #0967ff 0px 0px 100px #0967ff);
}

.rightside-login {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.login-box {
    background: rgb(32, 31, 31);
    padding: 31.2px 12px 31.2px 12px;
    display: flex;
    flex-direction: column;
    border-radius: 8px;
    box-shadow: 0px 1px 500px #0967ff,0 0 1px 1px #0967ff;
    min-width: 100px;
    gap: 16px;
}

.login-box input[type="text"],
.login-box input[type="password"] {
    padding: 15.6px 7.5px;
    margin-bottom: 20.8px;
    border: 1.5px solid #e9eaec;
    border-radius: 8px;
    outline: none;
    transition: border-color 0.2s;
    background: rgb(32, 31, 31);
    width: 100%;
    box-sizing: border-box;
    color: #fff;
}

.login-box input[type="text"]:focus,
.login-box input[type="password"]:focus {
    border-color: #0967ff;
}

.login-btn {
    background: #0967ff;
    color: #fff;
    font-size: 15px;
    font-weight: bold;
    border: none;
    border-radius: 6px;
    padding: 15.6px 7.5px;
    margin-bottom: 0;
    cursor: pointer;
    transition: background 0.2s;
    width: 100%;
    box-sizing: border-box;
}

.login-btn:hover {
    background: #2f84f3;
}

.forgot-password {
    font-size: 15px;
    margin-bottom: 0px;
    text-align: center;
    display: block;
}

.forgot-password :hover {
    text-decoration: underline;
}

.forgot-password a {
    color: #0967ff;
    text-decoration: none;
}

hr {
    border: none;
    border-top: 1px solid #e9eaec;
    margin: 0;
    width: 100%;
}

.create-account {
    background: #3dda1e;
    color: #fff;
    font-size: 15px;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    padding: 10px 0;
    cursor: pointer;
    transition: background 0.2s;
    text-align: center;
    display: flex;
    justify-content: center;
    margin: 0;
    width: 100%;
    box-sizing: border-box;
}

.create-account a {
    text-decoration: none;
    border: none;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    font-family: Arial, Helvetica, sans-serif;
}

.create-account:hover {
    background: #55d13a;
}

.footer {
    margin-top: 24px;
    text-align: center;
    font-size: 16px;
    color: #fff;
    width: 100%;
}

.footer a {
    color: #0967ff;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

@media (max-width: 900px) {
    .page {
        flex-direction: column;
        padding: 20px;
        max-width: 100%;
    }
    
    .leftside-logo {
        margin-right: 0;
        margin-bottom: 40px;
        align-items: center;
        text-align: center;
        bottom: 0;
    }
    
    .heading-logo {
        width: 100%;
        font-size: 24px;
        filter: drop-shadow(0px 0px 50px white);
    }
    
    .fblogo {
        top: 0;
        margin-left: 0;
    }
    
    .rightside-login {
        width: 100%;
    }
    
    .login-box {
        width: 100%;
        box-shadow: 0px 1px 100px #0967ff, 0 0 1px 1px #0967ff;
    }
}

@media (max-width: 500px) {
    body {
        padding: 0 10px;
    }
    
    .leftside-logo {
        min-width: auto;
        width: 100%;
    }
    
    .heading-logo {
        font-size: 20px;
        width: 100%;
    }
    
    .fblogo img {
        height: 80px;
    }
    
    .login-box {
        padding: 20px 12px;
    }
    
    .login-box input[type="text"],
    .login-box input[type="password"] {
        padding: 12px 7.5px;
        margin-bottom: 15px;
    }
    
    .login-btn {
        padding: 12px 7.5px;
    }
    
    .footer {
        font-size: 14px;
    }
}

@media (max-width: 350px) {
    .heading-logo {
        font-size: 18px;
    }
    
    .create-account a {
        font-size: 16px;
    }
    
    .footer {
        font-size: 12px;
    }
}
