* {
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #ffffff;
}

.login-container {
    width: 100%;
    max-width: 380px;
    padding: 20px;
    text-align: center;
}

.logo img {
    max-width: 349px;
    margin-bottom: 20px;
}

h1 {
    color: #9f3907;
    font-size: 24px;
    margin-bottom: 30px;
}

.login-form {
    text-align: left;
}

label {
    font-size: 14px;
    color: #333;
    margin-bottom: 5px;
    display: block;
}

input {
    width: 100%;
    padding: 12px;
    border: 2px solid #9f3907;
    border-radius: 6px;
    margin-bottom: 15px;
    font-size: 14px;
}

input:focus {
    outline: none;
    border-color: #9f3907;
}

.password-wrapper {
    position: relative;
}

.password-wrapper .eye {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 16px;
    color: #555;
}

.forgot {
    display: block;
    text-align: left;
    font-size: 13px;
    color: #9f3907;
    text-decoration: none;
    margin-bottom: 25px;
}

button {
    width: 100%;
    padding: 14px;
    background: #9f3907;
    color: #fff;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    cursor: pointer;
}

button:hover {
    background: #9f3907;
}

.register {
    display: flex;
    align-items: center;
    margin-top: 25px;
}

.register p {
    font-size: 13px;
    color: #666;
    margin: 0 10px;
    white-space: nowrap;
}

.register .line {
    flex: 1;
    height: 1px;
    background: #ccc;
}


/* Contenedor */
.register {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 15px;
}

/* Líneas laterales */
.register .line {
    flex: 1;
    height: 1px;
    background-color: #ddd;
}

/* Texto del enlace */
.register a {
    color: #9f3907;      /* color del texto */
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all .3s ease;
}

/* Hover (cuando pasan el mouse) */
.register a:hover {
    color: #9f3907;
    text-decoration: underline;
}


.row {
    display: flex;
    gap: 15px;
}

.row .input-group {
    flex: 1;
}

.logo {
    text-align: center;
}

/* Hacer el contenedor del registro un poco más ancho */
.login-box {
    width: 520px;   /* antes normalmente está en 420–460 */
    max-width: 95%;
}

/* Inputs más largos y cómodos */
.input-group input {
    width: 100%;
    padding: 14px 16px;
    font-size: 15px;
}

/* Mejor distribución en filas dobles */
.row {
    display: flex;
    gap: 20px;
}

.row .input-group {
    flex: 1;
}