/* Estilos generales */
body {
    font-family: Arial, sans-serif;
    background: linear-gradient(to right, #0052D4, #4364F7, #6FB1FC);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

/* Contenedor principal */
.container {
    width: 100%;
    max-width: 350px;
}

/* Caja de login */
.login-box {
    background: #ffffff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
}

/* Logo */
.logo-box {
    margin-bottom: 20px;
}

.logo {
    width: 70px;
    height: auto;
    border-radius: 50px;
}

/* Campos de entrada */
.input-box {
    display: flex;
    flex-direction: column;
    text-align: left;
    margin-bottom: 15px;
}

.input-box label {
    font-size: 14px;
    margin-bottom: 5px;
    color: #333;
    font-weight: bold;
}

.input-box input {
    padding: 12px;
    border: 2px solid #0056b3;
    border-radius: 5px;
    font-size: 16px;
    outline: none;
    transition: 0.3s;
}

.input-box input:focus {
    border-color: #ff9800;
    box-shadow: 0px 0px 5px rgba(255, 152, 0, 0.6);
}

/* Botón con color */
.btn {
    width: 100%;
    padding: 12px;
    background: #ff9800;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    font-size: 16px;
    transition: 0.3s;
}

.btn:hover {
    background: #e68900;
    transform: scale(1.05);
}

/* Registro */
.register-link {
    font-size: 14px;
    margin-top: 12px;
    color: #fff;
}

.register-link a {
    color: #ffeb3b;
    text-decoration: none;
    font-weight: bold;
}

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