* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: #fafafa;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
    padding: 32px 20px;
    gap: 32px;
}

.phone-mockup {
    display: none;
}

.phone-mockup img {
    height: 618px;
}

.login-container {
    max-width: 350px;
    width: 100%;
}

.logo-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
}

.logo-circle {
    width: 72px;
    height: 72px;
    border-radius: 24px;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon {
    width: 42px;
    height: auto;
    display: block;
}

.login-box {
    background: white;
    border: 1px solid #dbdbdb;
    padding: 24px 20px 20px;
    margin-bottom: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.login-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.back-button {
    border: none;
    background: transparent;
    font-size: 20px;
    cursor: pointer;
    padding: 0;
    color: #262626;
}

.login-title {
    font-size: 16px;
    font-weight: 600;
    color: #262626;
}

.login-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.input-field {
    width: 100%;
    padding: 13px 12px;
    border: 1px solid #dbdbdb;
    border-radius: 24px;
    background: #fafafa;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s;
}

.input-field:focus {
    border-color: #a8a8a8;
    background: white;
}

.login-btn {
    width: 100%;
    padding: 10px;
    margin-top: 14px;
    background: #b2dffc;
    color: white;
    border: none;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.login-btn:hover {
    background: #1877f2;
}

.login-btn:active {
    opacity: 0.7;
}

.divider {
    display: flex;
    align-items: center;
    width: 100%;
    margin: 20px 0;
    gap: 18px;
}

.line {
    flex: 1;
    height: 1px;
    background: #dbdbdb;
}

.divider-text {
    color: #8e8e8e;
    font-size: 13px;
    font-weight: 600;
}

.facebook-login {
    width: 100%;
    padding: 10px;
    margin-top: 16px;
    background: #ffffff;
    color: #1877f2;
    border: 1px solid #dbdbdb;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: opacity 0.2s;
}

.facebook-login:hover {
    opacity: 0.7;
}

.facebook-login svg {
    width: 16px;
    height: 16px;
}

.forgot-password {
    color: #00376b;
    font-size: 13px;
    text-decoration: none;
    margin-top: 14px;
}

.forgot-password:hover {
    opacity: 0.7;
}

.create-account-btn {
    width: 100%;
    padding: 10px;
    margin-top: 12px;
    background: #ffffff;
    color: #0095f6;
    border-radius: 24px;
    border: 1px solid #0095f6;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

.meta-section {
    text-align: center;
    margin-top: 24px;
    font-size: 12px;
    color: #737373;
}

.meta-logo {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.meta-section a {
    color: #00376b;
    text-decoration: none;
    font-weight: 500;
}

.footer {
    padding: 24px 20px;
    text-align: center;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-bottom: 16px;
}

.footer-links a {
    color: #8e8e8e;
    font-size: 12px;
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: underline;
}

.footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    color: #8e8e8e;
    font-size: 12px;
}

/* Responsive */
@media (max-width: 450px) {
    .container {
        padding: 24px 16px;
    }
}
