body {
    background: linear-gradient(to top right, var(--light-bg), var(--dark-bg));
}

main {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    margin-top: 200px;
    height: calc(100vh - 200px);
    justify-content: center;
}

.form-box {
    max-width: 300px;
    background: var(--light-bg);
    overflow: hidden;
    border-radius: 16px;
    color: black;
    width: 100%;
    position: relative;
    height: 375px;
}

.form {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 32px 24px 24px;
    gap: 16px;
    text-align: center;
}

.title {
    font-weight: bold;
    font-size: 1.6rem;
}

.subtitle {
    font-size: 1rem;
    color: #666;
}

.form-container {
    overflow: hidden;
    border-radius: 8px;
    background-color: #fff;
    margin: 1rem 0 .5rem;
    width: 100%;
}

.input {
    background: none;
    border: 0;
    outline: 0;
    height: 40px;
    width: 100%;
    border-bottom: 1px solid #eee;
    font-size: .9rem;
    padding: 8px 15px;
}

.form-section {
    padding: 16px;
    font-size: .85rem;
    background-color: #7a7a7a;
    box-shadow: rgb(0 0 0 / 8%) 0 -1px;
}


.form-section a {
    font-weight: bold;
    color: var(--text-primary);
    transition: color .3s ease;
}

.form-section a:hover {
    color: var(--text-secondary);
    text-decoration: underline;
}

.boton-elegante {
    padding: 10px 10px;
    border: 2px solid #2c2c2c;
    background-color: #1a1a1a;
    color: #ffffff;
    font-size: 1.1rem;
    cursor: pointer;
    border-radius: 30px;
    transition: all 0.4s ease;
    outline: none;
    position: relative;
    overflow: hidden;
    font-weight: bold;
    width: 100%;
}

.boton-elegante::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle,
            rgba(255, 255, 255, 0.25) 0%,
            rgba(255, 255, 255, 0) 70%);
    transform: scale(0);
    transition: transform 0.5s ease;
}

.boton-elegante:hover::after {
    transform: scale(4);
}

.boton-elegante:hover {
    border-color: #666666;
    background: #292929;
}