body,
html {
	height: 100%;
	margin: 0;
	padding: 0;
	max-width: 100%;
	overflow-x: hidden;
}

h2 {
	color: #000;
	font-family: 'Roboto', sans-serif;
	font-size: 22px;
	margin: 15px;
	text-align: center;
	text-transform: uppercase;
	background: linear-gradient(to right, #465d8c 0%, #0d3d6a 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5), 0px 0px 3px rgba(0, 0, 0, 0.3);
}

.group {
	border: 1px solid #465d8c;
	padding: 20px;
	width: 90%;
	max-width: 400px;
	color: #006;
	border-radius: 8px;
	background: linear-gradient(333deg, rgba(229, 229, 240, 1) 0%, rgba(152, 154, 157, 1) 51%, rgba(204, 207, 212, 1) 60%);
	margin: 20px auto;
	box-shadow: 4px 4px 15px rgba(0, 0, 0, 0.3), -4px -4px 15px rgba(255, 255, 255, 0.1);
}

.table1 {
	width: 100%;
}

.table1 th,
.table1 td {
	padding: 10px;
}

.form-input {
	width: calc(100% - 20px);
}

.form-btn {
	width: calc(50% - 10px);
	height: auto;
	padding: 15px;
	font-size: 16px;
	background-color: #007bff;
	color: #fff;
	border: none;
	border-radius: 5px;
	display: block;
	margin: auto;

}

.form-btn:hover {
	background-color: #3b80a9;
	box-shadow: none;
	transform: none;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000; /* Asegura que esté en el frente */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: #fff;
    margin: 15% auto; /* Centrará verticalmente */
    padding: 20px;
    border-radius: 8px;
    width: 80%;
    max-width: 400px;
    text-align: center;
}

.close-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    float: right;
}