﻿html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    background-color: white;
}

body {
    background-image: url('/Imagen/Mundo2.jpg');
    background-repeat: no-repeat;
    background-position: bottom center;
    background-attachment: fixed;
    background-size: 100% auto;
}


* {
    box-sizing: border-box;
}

.form-group{
    width: 100%;
    overflow: hidden;
}
.input-lg {
    width: 345px;
    height: 40px;
    overflow: hidden;
}
.header {
    background: #022335;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 20px;
    z-index: 110;
    padding: 5px 5px;
    border-bottom: 5px solid #3498db;
    color: white;
    text-align: center;
}

.Titulo {
    width: 100%;
    margin: 0;
    transition: all 0.5s ease;
    height: auto;
    border-radius: 5px;
    box-shadow: 0 0 10px #3498db;
    border-top: 2px solid #3498db;
    padding: 5px 0 3px 0;
    z-index: 1;
    white-space: nowrap;
    margin-top: 0px;
    margin-left: 0%;
    text-align: center;
    background: black;
    color: white;
    margin-bottom: 20px;
}
.Inferior {
    width: 100%;
    height: 20px;
    padding: 0px;
    background-color: #022335;
    display: flex;
    justify-content: center; /* Centrar horizontalmente */
    align-items: center; /* Centrar verticalmente */
    border: 2px solid #3498db;
    position: fixed;
    bottom: 0;
    color: white;
    z-index: 1000;
    padding: 5px 5px;
    margin-top: 20px;
}
form {
    max-width: 400px;
    margin: 0 auto;
    background-color: #022335;
    padding: 10px;
    border-radius: 3px;
    color: white;
    margin-top: 60px;
    overflow: hidden;
    border-radius: 10px;
    border: 2px solid #3498db;
}

input {
    padding: 10px;
    width: 100%;
    color: #666;
    border-radius: 3px;
    border: 1px solid #ccc;
}

button {
    padding: 10px 15px;
    margin: 10px 0;
    width: 100%;
    color: white;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    font-size: 1.1rem;
}

    button[type="submit"] {
        background-color: rgb(34, 139, 34);
    }

    button[type="reset"] {
        background-color: #FFA420;
    }

p {
    text-align: center;
    font-size: 1.1rem;
    color: red;
}

a {
    color: red;
    cursor: pointer;
    text-decoration: none;
}

    a:hover {
        color: rgba(11, 11, 190, 0.562);
    }

    a:focus {
        color: rgba(3, 3, 85, 0.466);
    }

/* Media Queries */
@media only screen and (max-width: 768px) {
    form {
        max-width: 90%;
        margin-top: 10%;
        overflow: hidden;
    }
    .input-lg {
        width: 300px;
        height: 40px;
        overflow: hidden;
    }
}
