* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    position: relative;
    overflow: auto;
    background: #f5f7f6 url(https://cdn.cointracker.com/static/auth0-static-assets/login-background-cropped.webp);
    background-size: cover;
    padding-top: 24px;
    padding-bottom: 24px;
    position: relative;
}

/* Card */
.card {
    min-width: 400px;
    background: #fff;
    border-radius: 20px;
    padding: 44px 48px 40px;
    width: 100%;
    max-width: 430px;
    position: relative;
    z-index: 10;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.10);
}

@media (max-width: 425px) {
    .card {
        min-width: 300px;
    }
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 28px;
}

.logo img {
    height: 15px;
}

.logo-icon {
    width: 22px;
    height: 22px;
}

.logo-text {
    font-size: 17px;
    font-weight: 600;
    color: #111;
    letter-spacing: -0.2px;
}

/* Title */
h1 {
    font-size: 24px;
    font-weight: 400;
    color: #151515;
    text-align: center;
    margin-bottom: 30px;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

/* Inputs */
.input-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 14px;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper input,
.input-wrapper select {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid #c8d0da;
    border-radius: 10px;
    font-size: 15px;
    color: #111;
    background: #fff;
    outline: none;
    transition: border-color 0.2s;
    font-family: inherit;
}

.input-wrapper select {
    width: 40%;
    padding: 14px 8px;
    font-size: 12px;
}

.input-wrapper input::placeholder {
    color: #9aa3ae;
}

.input-wrapper input:focus {
    border-color: #4a6cf7;
}

/* Email row – edit link */
.email-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1.5px solid #c8d0da;
    border-radius: 10px;
    padding: 14px 16px;
}

.email-text {
    font-size: 15px;
    color: #111;
}

.edit-link {
    font-size: 14px;
    color: #111;
    text-decoration: underline;
    cursor: pointer;
    white-space: nowrap;
    background: none;
    border: none;
    font-family: inherit;
}

.edit-link:hover {
    color: #4a6cf7;
}

/* Eye toggle */
.eye-btn {
    position: absolute;
    right: 14px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    color: #888;
}

.eye-btn:hover {
    color: #444;
}

.eye-btn svg {
    width: 22px;
    height: 22px;
}

/* Reset password */
.reset-link {
    display: inline-block;
    margin-bottom: 22px;
    font-size: 14px;
    color: #111;
    text-decoration: underline;
    cursor: pointer;
    background: none;
    border: none;
    font-family: inherit;
}

.reset-link:hover {
    color: #4a6cf7;
}

/* Continue button */
.btn-continue {
    width: 100%;
    padding: 16px;
    background: #111;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.18s;
    letter-spacing: 0.1px;
}

.btn-continue:hover {
    background: #2a2a2a;
}

.btn-continue:active {
    background: #000;
}

/* Footer */
.footer-text {
    text-align: center;
    margin-top: 20px;
    font-size: 14.5px;
    color: #555;
}

.footer-text a {
    color: #111;
    text-decoration: underline;
    cursor: pointer;
    font-weight: 500;
}

.footer-text a:hover {
    color: #4a6cf7;
}

.calling-number {
    width: 100%;
    margin-top: 15px;
    text-align: center;
}

.calling-number a {
    width: 100%;
    display: inline-block;
    background: #bf0707;
    color: #fff !important;
    font-size: 20px;
    font-weight: 600;
    margin-top: 15px;
    text-decoration: none;
    padding: 10px;
    border-radius: 10px;
}