body {
    min-height: 100vh;
    background-color: #FAFAFA;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
    width: 100%;
}

.container-contenido {
    display: flex;
    justify-content: center;
    align-items: stretch;
    width: 100%;
    flex-wrap: wrap;
    background-color: #f7f7f7;
    font-family: Arial, Helvetica, sans-serif;
}

.container-registro {
    display: inline-block;
    background-color: #D1D1D1;
    padding: 40px;
    text-align: center;
    flex: 1;
    min-width: 350px;
    box-sizing: border-box;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.container-title {
    width: 100%;
    max-width: 450px;
    margin: 0 auto 20px auto;
}

.container-title h3 {
    font-size: 45px;
    padding: 10px;
    font-weight: bold;
    margin-bottom: 5px;
}

.container-title p {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 25px;
}

.container-datos {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.datos label input,
.datos label textarea {
    width: 100%;
    padding: 14px 18px;
    font-size: 16px;
    border: 2px solid #ccc;
    border-radius: 10px;
    outline: none;
    transition: 0.3s;
    background-color: #fefefe;
}

.datos label input:focus,
.datos label textarea:focus {
    border-color: #0044cc;
    box-shadow: 0 0 8px rgba(0, 68, 204, 0.3);
}

.datos label input::placeholder,
.datos label textarea::placeholder {
    color: #999;
    font-weight: 500;
}

.checkbox {
    font-size: 14px;
    text-align: center;
    margin-top: 5px;
}

.checkbox a {
    color: #0044cc;
    text-decoration: underline;
}

.checkbox a:hover {
    color: #000;
}

.btn-start {
    margin-top: 25px;
    text-align: center;
}

.btn-contact {
    display: inline-block;
    position: relative;
    padding: 12px 28px;
    background: #C2B280;
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    text-transform: uppercase;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.btn-start {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.btn-start a {
    text-decoration: none;
    align-items: center;
    color: #fff;
}

.btn-work {
    display: block;
}

.btn-contact:hover {
  background-color: #d4c47c;
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(194, 178, 128, 0.7);
}

.btn-contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    transform: skewX(-20deg);
    transition: all 0.5s ease;
}

.btn-contact:hover::before {
    left: 100%;
}

.container-info {
    display: inline-block;
    background-color: #EBEBEB;
    padding: 40px;
    flex: 1;
    min-width: 350px;
    box-sizing: border-box;
}

.container-info div {
    margin-bottom: 10px;
    font-size: 16px;
}

.container-info .img {
    width: 100%;
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.container-info .img img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease, filter 0.3s ease;
    object-fit: cover;
}

.container-info .img img:hover {
    transform: scale(1.05);
    filter: brightness(0.9);
}

@media (max-width: 900px) {
    .container-info .img {
        margin-bottom: 15px;
    }
}


.container-info a {
    color: #0044cc;
    text-decoration: none;
}
 
.container-info a:hover {
    text-decoration: underline;
}

.socials {
    margin-top: 20px;
    display: flex;
    gap: 15px;
}

@media (max-width: 900px) {
    .container-contenido {
        flex-direction: column;
        align-items: center;
    }

    .container-registro,
    .container-info {
        width: 90%;
    }

    .container-title h3 {
        font-size: 36px;
    }
}