body {
    margin: 0;
    font-family: 'Inter', Arial, sans-serif;
    background: #f2f2f2;
}

/* HEADER */
.header {
    display: flex;
    justify-content: space-between;
    padding: 25px 50px;
}

.logo {
    color: #ff3b30;
    font-size: 34px;
    font-weight: 600;
}

.lang {
    font-size: 14px;
}

/* CENTER */
.main {
    height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

/* INPUT */
.username {
    border: none;
    border-bottom: 2px solid #00c2a8;
    background: transparent;
    font-size: 26px;
    text-align: center;
    width: 300px;
    outline: none;
    margin-bottom: 40px;
}

/* BUTTON PRINCIPAL */
.btn-primary {
    background: #e8415a;
    color: white;
    border: none;
    padding: 14px 60px;
    border-radius: 30px;
    font-size: 15px;
    cursor: pointer;
    margin-bottom: 20px;
}

/* BUTTON OUTLINE */
.btn-outline {
    border: 2px solid #e8415a;
    color: #e8415a;
    background: transparent;
    padding: 13px 55px;
    border-radius: 30px;
    font-size: 15px;
    cursor: pointer;
}

/* LINK */
.link {
    color: #e8415a;
    margin-top: 20px;
}

/* FOOTER */
.footer {
    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
    color: #e8415a;
}