:root {
--orange: #F18E00;
--orangehover: #d07b02;
--grey: #495057;
}

*{
box-sizing: border-box;
}


body {
    margin: 0;
    font-family: "Nunito Sans", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    background: #f5f5f7;
    color: #1d1d1f;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

input, textarea, select, button {
    font-family: inherit;
}

a{
 color: var(--orange);
 text-decoration:none;
}

h4{
font-weight:normal;
}

.header, .footer {
    padding: 10px;
    text-align: center;
    background: #ffffffcc;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e5e5e5;
}

.footer {
    margin-top: auto;
    border-top: 1px solid #e5e5e5;
    border-bottom: none;
}

.container {
    width: 100%;
    max-width: 380px;
    margin: 130px auto;
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    text-align: center;
}

.logo{
width:180px;
}



input{
    width: 100%;
    padding: 12px;
    border: 1px solid #d2d2d7;
    border-radius: 8px;
    margin-top: 10px;
    font-size: 16px;
}

button {
    width: 100%;
    padding: 12px;
    margin-top: 20px;
    background: var(--orange);
    color: #fff;
    font-size: 16px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}

button:hover {
    background: var(--orangehover)
}

.enlace {
    margin-top: 20px;
    word-break: break-all;
}
