/*Configurar el predeterminado de la pagina*/

/* Reset de estilos */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: linear-gradient(to right, #000, #a00);
}

.container {
    width: 100%;
    max-width: 400px;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
    text-align: center;
}

h2 {
    color: #a00;
    margin-bottom: 10px;
}

p {
    color: #333;
    margin-bottom: 20px;
}

.input-box {
    display: flex;
    align-items: center;
    background: #f5f5f5;
    margin-bottom: 15px;
    padding: 10px;
    border-radius: 5px;
}

.input-box i {
    color: #a00;
    font-size: 20px;
    margin-right: 10px;
}

.input-box input {
    width: 100%;
    border: none;
    background: none;
    outline: none;
    font-size: 16px;
}

.btn {
    background: #a00;
    color: #fff;
    padding: 10px;
    width: 100%;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: 0.3s;
}

.btn:hover {
    background: #800;
}

.links {
    margin-top: 15px;
}

.links a {
    display: block;
    color: #a00;
    text-decoration: none;
    margin: 5px 0;
}

.links a:hover {
    text-decoration: underline;
}