/* register.css */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body{
    margin:0;
    min-height:100vh;
    background:linear-gradient(135deg,#0f172a,#1e40af,#3b82f6);
}

header{
    background:#061125;
    color:white;
    padding:20px;
    width:100%;
}
.welcome-box {
  text-align: right;
  margin-right: 26px;
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 20px;
}
.welcome-box h2 {
  margin: 0 0 8px;
  color: #0e1d3f;
}
.welcome-box p{
font-size: 18px;
}

.contenedor{
    min-height:calc(80vh - 80px);
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
}

h1{
    color:white;
    font-size:2.5rem;
    margin-bottom:30px;
    text-shadow:0 4px 12px rgba(0,0,0,.3);
}

input{
    width:340px;
    padding:15px;
    margin:10px 0;
    border:none;
    border-radius:14px;
    font-size:16px;
    outline:none;
    background:rgba(255,255,255,.95);
    box-shadow:0 5px 15px rgba(0,0,0,.15);
    transition:.3s;
}

input:focus{
    transform:scale(1.02);
    box-shadow:0 0 15px rgba(59,130,246,.8);
}

button{
    width:340px;
    padding:15px;
    margin-top:15px;
    border:none;
    border-radius:14px;
    background:linear-gradient(135deg,#22c55e,#16a34a);
    color:white;
    font-size:16px;
    font-weight:bold;
    cursor:pointer;
    transition:.3s;
    box-shadow:0 5px 15px rgba(0,0,0,.2);
}

button:hover{
    transform:translateY(-3px);
    box-shadow:0 8px 20px rgba(0,0,0,.3);
}

button:active{
    transform:translateY(0);
}

p{
    margin-top:25px;
    color:white;
    font-size:15px;
}

a{
    color:#facc15;
    text-decoration:none;
    font-weight:bold;
    transition:.3s;
}

a:hover{
    color:#fde047;
    text-decoration:underline;
}

 

/* Responsive */
@media(max-width:450px){

    body::before{
        width:90%;
        height:480px;
    }

    input,
    button{
        width:90%;
    }

    h1{
        font-size:2rem;
    }
}