*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    height: 100%;
    margin: 0;
    padding: 0;
    overscroll-behavior: none;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: url("ropafondo.png") no-repeat center center fixed;
  background-size: cover;
  overscroll-behavior: none;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 20px;
  color: #333;
  margin: 0;
  width: 100%;
}

.Registro-container {
    width:100%;
    max-width: 400px;
    display:flex;
    margin: 40px auto;
    justify-content: center;
}

.Registro-panel {
    width: 100%;
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: visible;
    height: auto;
    min-height: auto;
}

.Registro-panel:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.Registro-titulo {
    text-align: center;
    margin-bottom: 8px;
    color: #2c3e50;
    font-size: 28px;
    font-weight: 600;
}

.register-description {
    text-align: center;
    margin-bottom: 30px;
    color: #7f8c8d;
    font-size: 16px;
    line-height: 1.5;
}

.mensaje-container {
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 500;
    font-size: 14px;
    transition: opacity 0.3s ease;
}

.mensaje-exito {
    background-color: #d1fae5;
    color:#059669;
    border: 1px solid #a7f3d0;
}

.mensaje-error {
    background-color: #fee2e2;
    color: #dc2626;
    border: 1px solid #fecaca;
}

.message-container.show {
    opacity: 1;
    transform: translateY(0);
}

.Registro-from{
    display: flex;
    flex-direction: column;
    gap:20px;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-label {
    font-size: 10px;
    color:#2c3e50;
    font-weight: 500;
    margin-bottom: 4px;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e1e8ed;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background: #f8f9fa;
}


.form-input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    background: #ffffff;
}
.form-input::placeholder {
    color: #bdc3c7;
}


.submit-button {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    margin-top: 10px;
}

.submit-button:hover:not(:disabled) {
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}
.submit-button:active {
    transform: translateY(0);
}
.submit-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.register-links {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: #7f8c8d;
}
.register-links p {
    margin-top: 8px;
}
.link {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.link:hover {
    color: #764ba2;
    text-decoration: underline;
}

/* Oculta enlaces específicos */
a[href*="somee.com"],
a[href*="somee"] {
    display: none !important;
}

/* Oculta divs que contengan "Web hosting" */
div:contains("Web hosting"),
div:has-text("Web hosting"),
*:contains("Web hosting") {
    display: none !important;
}

/* Ocultar por ID/class si tienen */
#somee-ad,
.somee-ad,
[class*="somee"],
[id*="somee"] {
    display: none !important;
}