body {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

.welcome-section {
    color: rgb(51, 51, 51);
    text-align: center;
    padding: 6rem 2rem;
}

.signup-login-section {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: -2rem;
    margin-bottom: 3rem;
}
.signup-section {
    background: white;
    padding: 3rem;
    border: 1px solid #e5e5e5;
    width: 100%;
    max-width: 400px;
}
.btn-signup {
    width: 100%;
    background: #f59e0b;
    color: white;
    text-decoration: none;
    border: none;
    padding: 1rem 1.5rem;
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.01em;
}
.btn-signup:hover {
    background: #d97706;
    transform: translateY(-1px);
}
.login-section {
    background: white;
    padding: 3rem;
    border: 1px solid #e5e5e5;
    width: 100%;
    max-width: 400px;
}
.btn-login {
    width: 100%;
    background: #f59e0b;
    color: white;
    text-decoration: none;
    border: none;
    padding: 1rem 1.5rem;
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.01em;
}
.btn-login:hover {
    background: #d97706;
    transform: translateY(-1px);
}
