body {
    background: #ffffff;
    font-family: 'Inter', sans-serif;
}

/* CONTENEDOR */
.login-wrapper {
    min-height: 100vh;
    padding: 20px;
}

/* TARJETA */
.login-card {
    width: 100%;
    max-width: 380px;
    background: #fff;
    border-radius: 16px;
    padding: 30px 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* TEXTOS */
.login-title {
    font-weight: 700;
    font-size: 24px;
    margin-bottom: 5px;
    color: #000;
}

.login-subtitle {
    font-size: 14px;
    color: #777;
    margin-bottom: 25px;
}

/* INPUTS */
.input-clean {
    border-radius: 10px;
    border: 1px solid #eee;
    background: #fafafa;
    transition: all 0.2s ease;
}

.input-clean:focus {
    border-color: #ff6600;
    box-shadow: 0 0 0 2px rgba(255,102,0,0.15);
    background: #fff;
}

/* BOTÓN */
.btn-main {
    background: #ff6600;
    border: none;
    border-radius: 10px;
    padding: 12px;
    font-weight: 600;
    transition: 0.2s;
}

.btn-main:hover {
    background: #e65c00;
}

/* LINK */
.link-register {
    display: block;
    text-align: center;
    margin-top: 10px;
    font-size: 14px;
    color: #ff6600;
    text-decoration: none;
}

.link-register:hover {
    text-decoration: underline;
}

.logo-wrap{
    text-align:center;
    margin-bottom:20px;
}

.logo-wrap img{
    max-width:225px;
    height:auto;
}