body{
	font-family: sans-serif;
	margin:0px;
	/*background-color:#ebebeb;*/
	/*min-width:1200px;*/
	overflow-x:hidden;
	
	background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
	
	background-size: 1800% 1800%;
    animation: gradient 15s ease infinite;
    height: 100vh;
}

@keyframes gradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}


.sidebar {
    background-color: #333;
    color: #fff;
    width: 200px;
    padding: 20px;
}

.sidebar ul {
    list-style-type: none;
    padding: 0;
}

.sidebar ul li {
    margin-bottom: 10px;
}

.sidebar ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
}

.sidebar ul li a:hover {
    text-decoration: underline;
}

.content {
    flex: 1;
    padding: 20px;
}

h1 {
    color: #333;
    font-size: 28px;
    margin-bottom: 10px;
}

h2 {
    color: #333;
    font-size: 24px;
    margin-bottom: 10px;
}

p {
    /*color: #666;*/
    font-size: 16px;
    line-height: 1.5;
}


label {
    display: block;
    margin-bottom: 5px;
}

input[type="text"],
input[type="email"],
input[type="password"] {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}






section{
	margin-bottom:100px;
}



/* alerta */
.alerta {
	position: fixed;
	top: 10%;
	left: 50%;
	transform: translate(-50%, -50%);
	background-color: #f8d7da;
	color: #721c24;
	border: 1px solid #f5c6cb;
	padding: 20px;
	border-radius: 5px;
	box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
	z-index: 9999;
	display: none; /* Inicialmente oculta la alerta */
}

.mensaje-exito {
	background-color: #d4edda;
	color: #155724;
	border-color: #c3e6cb;
}

.cerrar-alerta {
	position: absolute;
	top: 5px;
	right: 10px;
	cursor: pointer;
}






#div1{
	box-shadow:rgba(149, 157, 165, 0.2) 0px 8px 24px;
	padding:50px;
	margin-top:50px;
	margin-bottom:50px;
}




/*inicio tabla dominios*/

#tabla-dominios{
  overflow:auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0,0,0,0.1);
  background: linear-gradient(0deg, rgb(69 21 79) 0%, #0021a6 100%);
  border-radius: 10px;
}

th, td {
  padding: 15px;
  color: #fff;
}

th {
  text-align: left;
}

thead {
  th {
    background-color: #026592;
  }
}


tbody {
  tr {
    &:hover {
      background-color: rgba(255,255,255,0.3);
    }
  }
  td {
    position: relative;
    &:hover {
      &:before {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        top: -9999px;
        bottom: -9999px;
        background-color: rgba(255,255,255,0.2);
        z-index: -1;
      }
    }
  }
}

/* fin tabla dominios*/

#div-comprar-dominio{
	text-align: -webkit-center;
	padding:50px;
	/*background-image:linear-gradient(rgb(83 93 230), rgb(140 66 221));*/
	border-radius: 20px;
	margin-bottom:100px;
	border:1px solid #00000012;
}

#titulo-comprar-dominio{
	font-size:40px;
	font-weight:bold;
	color:white;
}

#precio-comprar-dominio{
	color:white;
	font-size:17px;
}

#input-domain{
	padding:20px;
}

#close-cookie-message{
	background-color:#ff3d3d;
	color:white;
	padding:5px 20px;
}
