/* Reset & Full Height */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #f0f2f5;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
}

/* Main Container - This is what we adjust for full screen */
.container {
    width: 100%;
    max-width: 420px;
    min-height: 100vh;
    margin: 0 auto;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
}

/* Rest of your styles (unchanged) */
.language{
    margin-top:15px;
    margin-bottom:25px;
    text-align:center;
}

#languageSelect{
    border:none;
    background:transparent;
    font-size:14px;
    color:#65676b;
    outline:none;
}

.logo-section{
    margin-top:30px;
    margin-bottom:40px;
}

.facebook-logo-image{
    width:70px;
    height:70px;
    border-radius:50%;
    object-fit:cover;
    padding:5px;
    background:white;
    margin-bottom: 20px;
}

input, textarea{
    width:100%;
    height: 58px;
    padding:0 16px;
    margin-bottom:12px;
    border:1px solid #dddfe2;
    border-radius:12px;
    box-sizing:border-box;
    font-size:16px;
    outline:none;
    transition:.3s;
}

input:focus {
    border-color:#1877f2;
    box-shadow:0 0 5px rgba(24,119,242,.3);
}

.login-btn{
    width:100%;
    height:50px;
    border:none;
    border-radius:30px;
    background:#1877f2;
    color:white;
    font-size:17px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}

.forgot-link{
    margin-top:18px;
    text-decoration:none;
    color:black;
    font-size:15px;
}

.create-account-btn{
   margin-top:96px;
    width:100%;
    text-align:center;
    text-decoration:none;
    border:2px solid #1877f2;
    color:#1877f2;
    padding:14px;
    border-radius:30px;
    font-weight:600;
    transition:.3s;
}
.create-account-btn:hover{
    background:#1877f2;
    color:white;
}

.meta-footer-img{
  width: 100px;
  height: 50px;
  display: block;
  margin: 0 auto;
  margin-top: 15px;
  margin-bottom: 5px;
}

/* ==================== FULL SCREEN FIX ==================== */

/* MOBILE - Force full width (This is the most important part) */
@media (max-width: 480px) {
    .container {
        max-width: 100% !important;   /* Forces full width */
        min-height: 100vh;
        padding: 15px 20px 80px;
        margin: 0;
    }

    .logo-section {
        margin-top: 90px;
        margin-bottom: 40px;
    }
}

/* Tablets */
@media (min-width: 481px) and (max-width: 992px) {
    .container {
        max-width: 100%;
        padding: 25px 40px;
    }
}

/* Desktop - Keep centered card */
@media (min-width: 993px) {
    .container {
        max-width: 420px;
        min-height: auto;
        margin: 40px auto;
        border-radius: 8px;
        box-shadow: 0 5px 25px rgba(0,0,0,0.15);
    }
}
