    .group {
        position: relative;
        margin-bottom: 10%;
    }

    input {
        font-size: 14px;
        padding: 5px 10px 5px 5px;
        display: block;
        background-color: transparent;
        border: none;
        border-bottom: 1px solid #757575;
    }

        input:focus {
            outline: none;
            border-bottom: 2px solid #0088cc;
        }



    .label {
        color: #999;
        font-size: 14px;
        font-weight: normal;
        position: absolute;
        pointer-events: none;
        left: 10px;
        top: 5px;
        transition: 0.2s ease all;
        -moz-transition: 0.2s ease all;
        -webkit-transition: 0.2s ease all;
    }

    input:focus ~ label, input:valid ~ label {
        top: -13px;
        font-size: 14px;
        color: #0088cc;
    }

    .bar {
        position: relative;
        display: block;
    }

        .bar:before, .bar:after {
            content: '';
            height: 2px;
            width: 0;
            bottom: 0;
            position: absolute;
            background: #0088cc;
            transition: 0.2s ease all;
            -moz-transition: 0.2s ease all;
            -webkit-transition: 0.2s ease all;
        }

        .bar:before {
            left: 50%;
        }

        .bar:after {
            right: 50%;
        }


    input:focus ~ .bar:before, input:focus ~ .bar:after {
        width: 50%;
    }


    .highlight {
        position: absolute;
        height: 50%;
        width: 100%;
        top: 15%;
        left: 0;
        pointer-events: none;
        opacity: 0.5;
    }

    input:focus ~ .highlight {
        -webkit-animation: inputHighlighter 0.3s ease;
        -moz-animation: inputHighlighter 0.3s ease;
        animation: inputHighlighter 0.3s ease;
    }

    #disabled {
        top: -15px;
        font-size: 14px;
    }

    .field-icon {
        float: right;
        margin-left: -25px;
        margin-top: -25px;
        position: relative;
        z-index: 2;
    }

    #page-title 
    {
        color: #0088cc; 
        margin-bottom: 0.7em; 
        margin-top: 0.7em;
    }

    @-webkit-keyframes inputHighlighter {
        from {
            background: #0088cc;
        }

        to {
            width: 0;
            background: transparent;
        }
    }

    @-moz-keyframes inputHighlighter {
        from {
            background: #0088cc;
        }

        to {
            width: 0;
            background: transparent;
        }
    }

    @keyframes inputHighlighter {
        from {
            background: #0088cc;
        }

        to {
            width: 0;
            background: transparent;
        }
    }


    progress {
		background-color: #E1E1E1;
        -webkit-appearance: none;
        height: 3px;
        left:	0px;
		line-height: 3px;
        margin-top: 5px;
        position:absolute;
		color: #74bd08; 
		border: 0px none;
    }

    progress::-webkit-progress-bar {  
	background-color: #E1E1E1;
}

	
	progress::-webkit-progress-value {
	background-color: #74bd08 !important;
	}
	
	progress::-moz-progress-bar {
	background-color: #74bd08 !important;
	}

    input::-ms-clear, input::-ms-reveal {
   display: none;
}

.headertext {
    text-align: center;
      width:100%
}
.otp-input-container {
    display: flex;
    gap: 5px;
}

.otp-input {
    width: 40px;
    height: 40px;
    font-size: 20px;
    text-align: center;
    border: 1px solid #ccc;
    border-radius: 5px;
}













