/* ===========================================================
   SMS Center — pagina standalone de descarcare a aplicatiei (APK Android).
   Ruta /SmsCenter. Layout = null (fara design-system-ul iStoma),
   deci stilurile sunt autonome (fara variabilele din _AppLayout).
   =========================================================== */

* { margin: 0; padding: 0; box-sizing: border-box; }

html, body {
    width: 100%;
    min-height: 100%;
    background: #FFFFFF;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    color: #111827;
    line-height: 1.6;
}

.smscenter {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

.smscenter__logo {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    display: inline-block;
}

.smscenter__logo img {
    height: 48px;
    width: auto;
    display: block;
}

.smscenter__content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.smscenter__head h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    color: #111827;
    margin-bottom: 1rem;
}

.smscenter__head p {
    font-size: 1.25rem;
    color: #4B5563;
    margin-bottom: 3rem;
}

.smscenter__download {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.smscenter__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #22AD01;
    color: #FFFFFF;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.875rem 2rem;
    border-radius: 999px;
    text-decoration: none;
    transition: background 0.2s ease;
}

.smscenter__btn:hover {
    background: #24BF00;
}

.smscenter__note {
    font-size: 0.875rem;
    color: #6B7280;
}

@media (max-width: 480px) {
    .smscenter__head h1 { font-size: 2rem; }
    .smscenter__head p { font-size: 1.1rem; }
}
