* {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    box-sizing: border-box;
}

body {
    background: linear-gradient(135deg, #0a3d62, #1e90ff);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
        position:relative;
    background: white;
    padding: 30px;
    width: 350px;
    border-radius: 12px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.1);
}

header {
    position:absolute;
    top: 0%;
    background: #0a3d62;
    color: #fff;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

h1{
    position: relative;
    margin-left: 10px;
    top: 25%;
}

h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #1e90ff;
}


/* formuario */
.form-group {
    margin-bottom: 15px;
}

label {
    font-size: 14px;
    color: #555;
}

input {
    width: 100%;
    padding: 10px;
    margin-top: 6px;
    border: 1px solid #0a3d62;
    border-radius: 8px;
    font-size: 15px;
}

input::placeholder{
    color:  #1e90ff;
}

input:focus {
    border-color: #1e90ff;
    outline: none;
}

p.link {
    cursor:default;
 color: #0a3d62;   
}


.btnlink{
    border-radius: 8px;
    border-style: none;
    background-color: #126b33;
    width: 30%;
    height: 70%;
    color: white;
}

.link{
    height: 50px;
}

.btnlink:hover{
    cursor: pointer;
    background-color: #1e90ff;
    width: 30%;
    height: 70%;
    color: white;
}

.btn {
    width: 100%;
    padding: 12px;
    margin-top: 10px;
    border: 1px solid #1e90ff;
    background: #1e90ff;
    color: white;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
}

.btn:hover {
    background: #0a3d62;
        border: 1px solid #0a3d62;

}

.btn-outline {
    background: white;
    border: 1px solid #1e90ff;
    color: #1e90ff;
}

.btn-outline:hover {
    border: 1px solid #0a3d62;
    background: #0a3d62;
    color: white;
}
