body {
    background: #0B0F19;
    color: #F8FAFC;
    font-family: Inter, Arial, sans-serif;
    margin: 0;
}

.auth-navbar {

    display: flex;

    justify-content: space-between;

    align-items: center;

    padding: 20px 60px;

    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.brand {

    color: white;

    text-decoration: none;

    font-size: 1.5rem;

    font-weight: 700;
}

.auth-links {

    display: flex;

    gap: 20px;
}

.auth-links a {

    color: #CBD5E1;

    text-decoration: none;
}

.signup-layout {

    max-width: 1280px;

    margin: auto;

    min-height: calc(100vh - 90px);

    display: grid;

    grid-template-columns: 1fr 500px;

    gap: 80px;

    align-items: center;

    padding: 60px;
}

.signup-tag {

    color: #10B981;

    letter-spacing: 2px;

    font-size: .9rem;

    font-weight: 700;
}

.signup-heading {

    font-size: 3.5rem;

    margin: 20px 0;
}

.signup-description {

    color: #94A3B8;

    line-height: 1.9;

    max-width: 600px;
}

.trust-points {

    display: grid;

    gap: 15px;

    margin-top: 40px;
}

.trust-points div {

    background: #131926;

    border: 1px solid rgba(255, 255, 255, .08);

    border-radius: 12px;

    padding: 16px;
}

@media(max-width:992px) {

    .signup-layout {

        grid-template-columns: 1fr;

        text-align: center;
    }

    .auth-navbar {

        padding: 20px;
    }
}

@media(max-width:768px) {

    .signup-heading {

        font-size: 2.4rem;
    }

    .signup-layout {

        padding: 20px;
    }
}

.card {
    background: #131926;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 24px;
    padding: 40px;
}

.title {
    font-size: 2.4rem;
    margin-bottom: 10px;
}

.subtitle {
    color: #94A3B8;
    margin-bottom: 30px;
}

.phone-input {
    width: 100%;
    height: 52px;
    background: #0F172A;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 12px;
    color: white;
    padding: 0 16px;
    font-size: 16px;
}

.btn {
    width: 100%;
    height: 52px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 600;
    margin-top: 20px;
}

.btn-primary,
.btn-success {
    background: #10B981;
    color: white;
}

.otp-boxes {
    display: flex;
    gap: 10px;
    margin: 24px 0;
}

.otp-input {
    width: 56px;
    height: 56px;
    text-align: center;
    font-size: 22px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, .08);
    background: #0F172A;
    color: white;
}

.resend-row {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.link-btn {
    background: none;
    border: none;
    color: #10B981;
    cursor: pointer;
}

.phone-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.prefix {
    color: white;
    font-weight: 600;
}

.step {
    display: none;
}

.step.active {
    display: block;
}

.auth-switch{
    text-align:center;
    margin-top:24px;
    color:#94A3B8;
}

.auth-switch a{
    color:#10B981;
    text-decoration:none;
    font-weight:600;
}

.signup-stats{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:16px;
    margin-top:32px;
}

.stat-card{
    background:#131926;
    border:1px solid rgba(255,255,255,.08);
    border-radius:16px;
    padding:20px;
    text-align:center;
}

.stat-card h3{
    color:#10B981;
    margin-bottom:8px;
}

.stat-card p{
    color:#94A3B8;
    font-size:.9rem;
}

.signup-benefits{
    display:grid;
    gap:10px;
    margin-top:20px;
    color:#94A3B8;
    font-size:.95rem;
}

.login-btn{
    padding:10px 18px;
    border:1px solid rgba(255,255,255,.12);
    border-radius:12px;
    text-decoration:none;
    color:white;
    transition:.3s;
}

.login-btn:hover{
    border-color:#10B981;
}

.auth-footer{
    text-align:center;
    padding:40px 20px;
    border-top:1px solid rgba(255,255,255,.08);
    margin-top:80px;
}

.auth-footer p{
    color:#94A3B8;
    margin-bottom:10px;
}

.auth-footer span{
    color:#64748B;
}

.trust-points div:hover,
.stat-card:hover{
    transform:translateY(-3px);
    border-color:rgba(16,185,129,.4);
}

.trust-points div,
.stat-card,
.card{
    transition:.3s ease;
}

.brand-logo{
    height:100px;
    width:auto;
    display:block;
}

.auth-navbar{
    padding: 24px 60px;
}

@media (max-width: 768px) {
    .brand-logo {
        height: 82px;
    }
}