body {
    font-family: Arial, sans-serif;
    background-color: #1a2236; /* Dark background color */
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: flex-start; /* Align to the top */
    min-height: 100vh;
    margin: 0;
    padding: 20px 0; /* Add some padding top/bottom */
    box-sizing: border-box;
}

.container {
    width: 100%;
    max-width: 400px;
    padding: 20px;
    box-sizing: border-box;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.back-arrow {
    color: #fff;
    font-size: 24px;
    text-decoration: none;
}

.language-select {
    background-color: transparent;
    border: none;
    color: #fff;
    font-size: 16px;
    padding: 5px;
    cursor: pointer;
    -webkit-appearance: none; /* Remove default arrow on select */
    -moz-appearance: none;
    appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20"><path fill="%23fff" d="M7 10l5 5 5-5z"/></svg>'); /* Custom arrow */
    background-repeat: no-repeat;
    background-position: right 5px center;
    padding-right: 25px; /* Space for the custom arrow */
}

.language-select option {
    background-color: #2b3a57; /* Darker background for options */
    color: #fff;
}

.logo-container {
    text-align: center;
    margin-bottom: 30px;
}

.facebook-logo {
    width: 60px;
    height: 60px;
}

.privacy-text {
    font-size: 14px;
    text-align: center;
    margin-bottom: 25px;
    line-height: 1.4;
}

.privacy-text a {
    color: #4CAF50; /* Green color for the link, matching the screenshot's "Change Settings" */
    text-decoration: none;
    font-weight: bold;
}

.login-form .input-group {
    margin-bottom: 15px;
}

.login-form input {
    width: 100%;
    padding: 15px;
    background-color: #2b3a57; /* Darker input background */
    border: 1px solid #3d4a66; /* Slightly lighter border */
    border-radius: 8px;
    color: #fff;
    font-size: 16px;
    box-sizing: border-box; /* Include padding in width */
}

.login-form input::placeholder {
    color: #a0a8b9; /* Lighter placeholder text */
}

.login-button {
    width: 100%;
    padding: 15px;
    background-color: #1877F2; /* Facebook blue */
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 10px;
}

.login-button:hover {
    background-color: #166FE5;
}

.forgot-password {
    display: block;
    text-align: center;
    color: #1877F2;
    text-decoration: none;
    font-size: 16px;
    margin-top: 20px;
    margin-bottom: 30px;
}

.divider {
    border-bottom: 1px solid #3d4a66;
    margin-bottom: 30px;
}

.create-account-button {
    width: 100%;
    padding: 15px;
    background-color: #4CAF50; /* Green for create account */
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    margin-bottom: 40px;
}

.create-account-button:hover {
    background-color: #45a049;
}

.meta-branding {
    text-align: center;
    font-size: 14px;
    color: #a0a8b9;
}

.meta-branding .fab {
    margin-right: 5px;
    font-size: 16px;
}

/* Responsive adjustments */
@media (max-width: 480px) {
    body {
        padding: 10px;
    }
    .container {
        padding: 15px;
    }
    .header {
        margin-bottom: 20px;
    }
    .logo-container {
        margin-bottom: 20px;
    }
    .privacy-text {
        margin-bottom: 20px;
        font-size: 13px;
    }
    .login-form input,
    .login-button,
    .create-account-button {
        padding: 12px;
        font-size: 16px;
    }
    .forgot-password {
        font-size: 14px;
        margin-top: 15px;
        margin-bottom: 25px;
    }
    .divider {
        margin-bottom: 25px;
    }
}