:root {
    --primary: #1ab394;
    --bg: #f8fafc;
    --card: #ffffff;
    --text: #0f172a;
    --muted: #64748b;
    --border: #e5e7eb;
    --gradient-primary: linear-gradient(135deg, hsl(172 66% 40%), hsl(172 66% 30%));

}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: system-ui, sans-serif;
}

body {
    background: var(--bg);
    color: var(--text);
}

/* Topbar */
.topbar {
    height: 64px;
    background: #fff;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    padding: 0 1rem;
    gap: 1rem;
}

/* Container */
.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 1rem 4rem;
    text-align: center;
}

/* Titles */
h1 {
    font-size: 1.8rem;
}

.subtitle {
    color: var(--muted);
    margin: .5rem 0 2rem;
}

/* Button */
.continue-btn {
    margin-top: 1rem;
    background: var(--gradient-primary);
    width: 100%;
    border: none;
    color: #fff;
    font-size: 1rem;
    padding: .9rem 1.8rem;
    border-radius: 12px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    opacity: 1;
    transition: box-shadow .2s ease, transform .2s ease;
    box-shadow: 0 8px 18px rgba(26, 107, 98, 0.35);
    
}

.continue-btn:hover {
    box-shadow:
        0 10px 24px rgba(29, 231, 208, 0.582);
    transform: translateY(-2px);
}

/* CARD FORM */
.card-form {
    max-width: 480px;
    margin: 0 auto;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.6rem;
    text-align: left;
}

/* FIELDS */
.field {
    margin-bottom: 1.2rem;
}

.field label {
    display: block;
    font-size: .85rem;
    margin-bottom: .4rem;
    color: var(--text);
    font-weight: 600;
}

.field input {
    width: 100%;
    height: 44px;
    padding: 0 .9rem;
    border-radius: 10px;
    border: 1px solid var(--border);
    font-size: .9rem;
    background-color: hsla(216, 17%, 71%, 0.1);
}

.field input:focus {
    outline: none;
    border-color: var(--primary);
}

/*LOGO*/
.logo {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-weight: 700;
    padding-top: 0rem;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon.small {
    width: 24px;
    height: 24px;
}

.logo-icon i {
    font-size: 1.4rem;
    font-weight: 100;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
    margin-left: 8px;
}

.logo span {
    font-weight: 700;
}

.logo p {
    font-size: 0.5rem;
    color: hsl(var(--foreground) / .4);

}

.alert {
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 16px;
    font-size: 14px;
}

.alert-error {
    background-color: #fdecea;
    color: #b42318;
    border: 1px solid #f5c2c7;
}