
        body {
            font-family: Arial, sans-serif;
            background: #f2f2f2;
            /* background-image: url("img/fondoClinica.jpg"); */
            display: flex;
            align-items: center;
            justify-content: center;
            height: 100vh;
            margin: 0;
        }

        .container-box {
            width: 800px;
            height: 450px;
            display: flex;
            background: #fff;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
        }

        /* Lado izquierdo (Login) */
        .login-left {
            width: 50%;
            padding: 40px;
        }

        .login-left h2 {
            font-weight: bold;
            margin-bottom: 20px;
        }

        .main_input_box {
            display: flex;
            align-items: center;
            border: 1px solid #ddd;
            border-radius: 30px;
            padding: 10px 15px;
            margin-bottom: 20px;
        }

        .main_input_box input {
            border: none;
            outline: none;
            flex: 1;
            padding-left: 10px;
        }

        .btn-login {
            width: 100%;
            background: #4c0764;
            border: none;
            border-radius: 30px;
            padding: 12px;
            color: white;
            font-weight: bold;
            cursor: pointer;
        }

        .btn-login:hover {
            background: rgb(216, 95, 206);
        }

        .options {
            display: flex;
            justify-content: space-between;
            font-size: 14px;
            margin-top: 10px;
        }

        /* Lado derecho (Sign Up message) */
        .login-right {
            width: 50%;
            /* background: #e73caeff; */
            color: white;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 30px;
        }

        .login-right h2 {
            margin-bottom: 10px;
        }

        .login-right p {
            margin-bottom: 20px;
        }

        .btn-signup {
            border: 2px solid white;
            background: transparent;
            border-radius: 30px;
            padding: 10px 25px;
            color: white;
            cursor: pointer;
            font-weight: bold;
        }

        /* Estilo para la imagen */
        .login-right img {
            border: 4px solid white; /* Marco alrededor */
            border-radius: 40%;     /* Bordes redondeados */
            padding: 5px;           /* Espacio entre borde y marco */
            max-width: 300px;       /* Tamaño máximo */
        }

        .text-center{

            font-size: 20pt;
            color: #4c0764;
            align-content: center;
        }
.login-left h2 {
  font-family: 'Poppins', sans-serif; /* Nueva fuente */
  font-size: 26px;                     /* Tamaño de fuente */
  font-weight: 600;                    /* Grosor de letra */
  text-align: center;                  /* Centrado horizontal */
  margin-bottom: 20px;
  color: #4c0764;                      /* Color opcional */
}