@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');
/* Estilos del primer archivo */
.register-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f7f7f7;
}
.register-form {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 400px;
}
.register-form .title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
}
.register-form .form-group {
    margin-bottom: 15px;
}
.register-form .label-text {
    font-weight: bold;
}
.register-form input[type="text"],
.register-form input[type="email"],
.register-form input[type="password"] {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
}
.register-form .actions {
    text-align: center;
}
.register-form .btn-submit {
    background-color: #007bff;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
.register-form .btn-submit:hover {
    background-color: #0056b3;
}
/* Estilos del segundo archivo */
* {
    box-sizing: border-box;
    padding: 0px;
    margin: 0px;
}
body {
    color: #1A202C;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
}
.link {
    color: #0603ac;
    text-decoration: none;
}
.link:hover {
    text-decoration: underline;
}
.login-wrapper {
    display: flex;
    align-items: center;
    position: relative;
    height: 100%;
}
.login-wrapper .box-col {
    width: 50%;
    height: 100%;
    position: relative;
}
.login-wrapper .box-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.login-wrapper .box-form {
    padding: 20px;
    display: flex;
    height: 100%;
    align-items: center;
    position: relative;
}
.login-wrapper .inner {
    max-width: 350px;
    margin: auto;
}
.form-head .title {
    font-size: 30px;
    font-weight: bold;
    color: #1A202C;
}
.form-group {
    margin-bottom: 20px;
}
.form-group .label-text {
    font-size: 16px;
    margin-bottom: 5px;
}
.form-group .form-control {
    width: 100%;
    height: 50px;
    padding: 7px 10px;
    outline: none;
    border: none;
    border-bottom: 1px solid #3d065d;
}
.form-group .form-control:focus {
    border-bottom: 2px solid #3d065d;
}
.form-button {
    display: flex;
    justify-content: space-between;
}
.check-action {
    position: relative;
}
.check-action .check {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    opacity: 0;
}
.check-action .name {
    display: inline-block;
}
.check-action .name::before {
    display: inline-block;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    content: "";
    vertical-align: middle;
    border: 1px solid #909194;
    margin-right: 5px;
    text-align: center;
    font-size: 12px;
    background-color: #fff;
}
.check-action .check:checked+.name::before {
    color: #3d065d;
    content: "\25CF";
    border-color: #3d065d;
}
.actions {
    margin-top: 20px;
}
.actions .btn {
    width: 100%;
    padding: 15px 20px;
    font-size: 20px;
    border: 0px;
    background-color: #000000;
    font-weight: bold;
    border-radius: 5px;
    margin-top: 15px;
}
.btnHome {
    width: 30%;
    padding: 10px 15px;
    font-size: 20px;
    border: 0px;
    color: white;
    background-color: #000000;
    font-weight: bold;
    border-radius: 5px;
    margin-top: 15px;
}
.btnHome:hover {
    background-color: #ccebb4;
    color: #121212;
    cursor: pointer;
}
.actions .btn-submit {
    background-color: #062535;
    color: #fff;
    cursor: pointer;
}
.actions .btn-submit:hover {
    background-color: #ffffff;
    color: #FDAF19;
    cursor: pointer;
    border: #FDAF19 1px solid;
    transition: .5s all ease;
}
.actions .btn-google {
    background-color: #0603ac;
    cursor: pointer;
    color: #fff;
}
.actions .btn-google:hover {
    background-color: #0b0a38;
    transition: .5s all ease;
}
.actions .btn-google .icon {
    display: inline-block;
    vertical-align: middle;
}
.actions .btn-google .icon img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}
.form-bottom {
    display: flex;
    justify-content: space-between;
}
.bottom-register {
    bottom: 20px;
    position: absolute;
    right: 0px;
    left: 0;
    text-align: center;
}
/* responsiveness */
@media(max-width:768px) {
    .login-wrapper .box-image {
        display: none;
    }
    .login-wrapper .box-col {
        width: 100%;
    }
}
@media(max-width:530px) {
    .login-wrapper {
        padding: 20px;
    }
    .login-wrapper .box-form {
        height: auto;
    }
    .bottom-register {
        margin: 20px 0px;
        position: relative;
    }
}
