body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    height: 100%;
}.form-container h2 {
    margin-bottom: -5px; /* Ajusta este valor para reducir el espacio */
    color: black;
}


.login-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start; /* Alinea el contenido hacia arriba */
    height: 100%;
    border: 1px solid #ccc;
    padding-top: 20px;
	width:auto; /* Espacio adicional en la parte superior, ajustable según tus necesidades */
}


h1 {
    color: black;
    margin-bottom: 1rem;
}

.form-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    border: 1px solid #ccc;
	 width: 80%; /* ocupará el 80% de su contenedor padre */
    max-width: 400px;
	
	
}

.logo {
    width: 100px;
    margin-bottom: 20px;
}

h2 {
    margin-bottom: 20px;
    color: black;
}

form {
    width: 100%;
    max-width: 400px;
    display: flex;
    flex-direction: column;
}

input {
    padding: 6px;
    margin: 10px 0;
    border: none;
    border: 1px solid #ccc;
    font-size: 16px;
}

input:focus {
    outline: none;
    border-bottom: 1px solid #0078d4;
}

button {
    padding: 15px;
    background-color: #0067b8;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 15px;
    font-size: 16px;
}

button:hover {
    background-color: #005fa3;
}

.signup-prompt {
    margin-top: 20px;
    font-size: 14px;
}
