* {
    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;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.login-container {
    width: 100%;
    max-width: 420px;
    padding: 20px;
}

.login-box {
    background: #ffffff;
    border: 1px solid #dbdbdb;
    border-radius: 12px;
    padding: 40px 40px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.title {
    font-size: 18px;
    font-weight: 600;
    color: #262626;
    margin-bottom: 24px;
}

.login-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.input-group input {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid #b2d7f5;
    border-radius: 20px;
    font-size: 14px;
    color: #262626;
    background: #ffffff;
    outline: none;
    transition: border-color 0.2s;
}

.input-group input:focus {
    border-color: #0095f6;
    box-shadow: 0 0 0 1.5px #0095f6;
}

.btn-login {
    width: 100%;
    padding: 12px;
    margin-top: 8px;
    background: linear-gradient(90deg, #a8c8f0, #b8d4f0);
    border: none;
    border-radius: 20px;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-login.active {
    background: #0095f6;
    box-shadow: 0 4px 12px rgba(0, 149, 246, 0.4);
}


.btn-login:hover {
    opacity: 0.9;
}


.forgot-password {
    margin-top: 16px;
    font-size: 13px;
    color: #262626;
    font-weight: 600;
    text-decoration: none;
}

.forgot-password:hover {
    text-decoration: underline;
}

.divider {
    width: 100%;
    height: 1px;
    background: #dbdbdb;
    margin: 24px 0;
}

.btn-facebook {
    width: 100%;
    padding: 12px;
    background: #fff;
    border: 1px solid #b2d7f5;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    color: #262626;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background 0.2s;
}

.btn-facebook:hover {
    background: #f0f7ff;
}

.fb-icon {
    flex-shrink: 0;
}

.btn-create {
    width: 100%;
    padding: 12px;
    margin-top: 10px;
    background: #fff;
    border: 1px solid #b2d7f5;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    color: #0095f6;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-create:hover {
    background: #f0f7ff;
}

.meta-logo {
    margin-top: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}


@media (max-width: 480px) {
    .login-box {
        padding: 30px 24px 20px;
    }
}

a {
    text-decoration: none;
}
