        body {
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 100vh;
            background-color: #fff;
        }
        
        .form-container {
            width: 100%;
            max-width: 400px;
            padding: 20px;
        }
        

        /* Title Styling */
        .form-container h1 {
            text-align: center;
            margin-bottom: 1.8rem;
            font-weight: 600;
            font-size: 2rem;
            letter-spacing: -0.5px;
        }

        /* Form Styling */
        .form-container form {
            display: flex;
            flex-direction: column;
            width: 100%;
        }

        /* Input Fields Styling */
        .form-container input:not([type="hidden"]) {
            width: 100%;
            padding: 12px 16px;
            margin: 0 0 12px 0;
            border: 2px solid #eaeaea;
            border-radius: 8px;
            font-size: 16px;
            transition: all 0.3s ease;
            outline: none;
        }

        

        /* Button Styling */
        .btn-signup {
            width: 100%;
            background-color: #0064d2;
            color: white;
            padding: 14px;
            font-size: 17px;
            font-weight: 600;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 10px;
            box-shadow: 0 4px 12px #014084;
        }

        .btn-signup:hover {
            background-color: #0064d2;
            transform: translateY(-2px);
            box-shadow: 0 6px 15px #014084;
        }

        .btn-signup:active {
            transform: translateY(0);
            box-shadow: 0 2px 8px #014084;
        }

        /* Links Container */
        .links-container {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
            margin-top: 1.5rem;
        }

        /* Link Styling */
        .login-link {
            text-align: center;
            display: block;
            font-size: 15px;
            color: #0064d2;
            text-decoration: none;
            transition: all 0.2s ease;
            word-wrap: break-word;
        }

        .login-link:hover {
            color: #0064d2;
            text-decoration: underline;
        }





        /* Movil */
        @media (max-width: 768px) {
            .form-container{
                padding: 20px 40px;
            }
          }

          .input-group-text {
            position: absolute;
            top: 40%;
            right: 10px;
            transform: translateY(-50%);
            cursor: pointer;
            background-color: transparent;
            border: none;
            font-size: 1.2em;
            pointer-events: auto;
        }

        .input-error {
            border: 2px solid red;
            color: red;
        }

        .input-icon{
            position: relative; 
            display: inline-block; 
            width: 100%;
        }