* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    background-color: #e8e8e8;
    width: 100%;
    height: 100vh;
}

.logo {
    max-width: 35%;
    margin: auto;
}

.logo img {
    width: 100%;
}

.log-in-window,
.log-in-window_updatePassword {
    width: 40rem;
    height: 100%;
    margin: 10% auto;
    background: #e8e8e8;
    border: 1px solid #e8e8e8;
    transition: all .3s;
    box-shadow: 6px 6px 12px #c5c5c5,
        -6px -6px 12px #ffffff;
    padding-bottom: 1.5rem;
    border-radius: 10px;
}


.form__group {
    position: relative;
    padding: 40px 60px 0;
    margin-top: 10px;
    width: 100%;
    max-width: 100%;
}

.form__field {
    font-family: inherit;
    width: 100%;
    border: none;
    border-bottom: 2px solid #9b9b9b;
    outline: 0;
    font-size: 17px;
    color: #000;
    padding: 7px 0;
    background: transparent;
    transition: border-color 0.2s;
}

.form__field::placeholder {
    color: transparent;
}

.form__field:placeholder-shown~.form__label {
    font-size: 17px;
    cursor: text;
    top: 20px;
}

.form__label {
    position: absolute;
    top: 0;
    display: block;
    transition: 0.2s;
    font-size: 17px;
    color: #9b9b9b;
    pointer-events: none;
}

.form__field:focus {
    padding-bottom: 6px;
    font-weight: 700;
    border-width: 3px;
    border-image: linear-gradient(to right, #116399, #38caef);
    border-image-slice: 1;
}

.form__field:focus~.form__label {
    position: absolute;
    top: 0;
    display: block;
    transition: 0.2s;
    font-size: 17px;
    color: #38caef;
    font-weight: 700;
}

.form__field:required,
.form__field:invalid {
    box-shadow: none;
}

.log-in-btn {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* log in button  */

.log-in-btn button {
    display: inline-block;
    padding: 12px 24px;
    border: 1px solid #4f4f4f;
    border-radius: 4px;
    transition: all 0.2s ease-in;
    position: relative;
    overflow: hidden;
    font-size: 19px;
    color: black;
    z-index: 1;
}

.log-in-btn button:before {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%) scaleY(1) scaleX(1.25);
    top: 100%;
    width: 140%;
    height: 180%;
    background-color: rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    display: block;
    transition: all 0.5s 0.1s cubic-bezier(0.55, 0, 0.1, 1);
    z-index: -1;
}

.log-in-btn button:after {
    content: "";
    position: absolute;
    left: 55%;
    transform: translateX(-50%) scaleY(1) scaleX(1.45);
    top: 180%;
    width: 160%;
    height: 190%;
    background-color: #39bda7;
    border-radius: 50%;
    display: block;
    transition: all 0.5s 0.1s cubic-bezier(0.55, 0, 0.1, 1);
    z-index: -1;
}

.log-in-btn button:hover {
    color: #ffffff;
    border: 1px solid #39bda7;
}

.log-in-btn button:hover:before {
    top: -35%;
    background-color: #39bda7;
    transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
}

.log-in-btn button:hover:after {
    top: -45%;
    background-color: #39bda7;
    transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
}

/* Page work Details */
.Emp-worksheet-heading {
    font-size: 30px;
    font-weight: 600;
    margin: 3rem 0;
}

.work-details-sheet {
    background: #e8e8e8;
    border: 1px solid #e8e8e8;
    transition: all .3s;
    box-shadow: 6px 6px 12px #c5c5c5,
        -6px -6px 12px #ffffff;
    padding: 1rem 4rem;
    width: 70%;
    margin: auto;
}

.worksheet-submit {
    display: flex;
    justify-content: center;
    margin-top: 5%;
}

.custom-padding {
    padding-left: 2%;
}

.btn {
    --color: #00A97F;
    --color2: rgb(10, 25, 30);
    padding: 0.8em 1.75em;
    background-color: transparent;
    border-radius: 6px;
    border: .3px solid var(--color);
    transition: .5s;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    z-index: 1;
    font-weight: 300;
    font-size: 17px;
    font-family: 'Roboto', 'Segoe UI', sans-serif;
    text-transform: uppercase;
    color: var(--color);
}

.btn::after,
.btn::before {
    content: '';
    display: block;
    height: 100%;
    width: 100%;
    transform: skew(90deg) translate(-50%, -50%);
    position: absolute;
    inset: 50%;
    left: 25%;
    z-index: -1;
    transition: .5s ease-out;
    background-color: var(--color);
}

.btn::before {
    top: -50%;
    left: -25%;
    transform: skew(90deg) rotate(180deg) translate(-50%, -50%);
}

.btn:hover::before {
    transform: skew(45deg) rotate(180deg) translate(-50%, -50%);
}

.btn:hover::after {
    transform: skew(45deg) translate(-50%, -50%);
}

.btn:hover {
    color: var(--color2);
}

.btn:active {
    filter: brightness(.7);
    transform: scale(.98);
}

/* section work Details Ends */

/* Log out page start  */
.checkout {
    display: flex;
    justify-content: center;
    align-items: center;

}

.checkout-window {
    width: 50vw;
    height: 70vh;
    box-shadow: 6px 6px 12px #c5c5c5,
        -6px -6px 12px #ffffff;
    margin: 6rem auto;
    padding: 2rem;
}

.company-logo {
    display: flex;
    justify-content: center;
    padding-top: 3%;
}

.company-logo img {
    width: 30%;

}

.inputGroup {
    font-family: 'Segoe UI', sans-serif;
    margin: 1em 0 1em 0;
    max-width: 100%;
    position: relative;
}

.inputGroup input {
    font-size: 100%;
    padding: 0.8em;
    outline: none;
    border: 2px solid rgb(200, 200, 200);
    background-color: transparent;
    border-radius: 20px;
    width: 100%;
}

.inputGroup label {
    font-size: 100%;
    position: absolute;
    left: 0;
    padding: 0.8em;
    margin-left: 0.5em;
    pointer-events: none;
    transition: all 0.3s ease;
    color: rgb(100, 100, 100);
}

.inputGroup :is(input:focus, input:valid)~label {
    transform: translateY(-50%) scale(.9);
    margin: 0em;
    margin-left: 1.3em;
    padding: 0.4em;
    background-color: #e8e8e8;
}

.inputGroup :is(input:focus, input:valid) {
    border-color: rgb(150, 150, 200);
}

/* Log out page End*/

/* Employee data page Start */
.emp-table-heading {
    color: royalblue;
}

.emp-table-heading h4 {
    width: 10vw;
    height: 5vh;
    box-shadow: 6px 6px 12px #c5c5c5,
        -6px -6px 12px #ffffff;
    color: royalblue;
    border-top-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.employee-table {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.employee-table h4 {
    font-size: 20px;
    font-weight: 600;
    transition: all .5s;
}

.Emp-data {
    box-shadow: 6px 6px 12px #c5c5c5,
        -6px -6px 12px #ffffff;
    margin-top: 10%;
}

.Emp-table {
    width: 100%;
    margin: auto;
}

.Emp-table th,
td {
    text-align: center;
    border: 4px solid #dddddd;
    text-align: left;
    padding: 1rem;
    text-align: center;
    color: rgb(149, 172, 243);
}

.emp-dataBtn button {
    color: royalblue;
    padding: 0.7em 1.7em;
    font-size: 18px;
    border-radius: 0.5em;
    background: #e8e8e8;
    border: 1px solid #e8e8e8;
    transition: all .3s;
    box-shadow: 6px 6px 12px #c5c5c5,
        -6px -6px 12px #ffffff;
    margin-top: 5%;
}

.emp-dataBtn button:hover {
    border: 1px solid white;
    color: #000000;
    transition: all .3s;
}

.emp-dataBtn button:active {
    box-shadow: 4px 4px 12px #c5c5c5,
        -4px -4px 12px #ffffff;
}

.label::after {
    content: '*';
    position: absolute;
    right: -0.7rem;
    color: red;
}

.update_pass {
    font-weight: 700;
    border-width: 3px;
    border-image: linear-gradient(to right, #116399, #38caef);
    /* border-image-slice: 1;    */
}

/* Employee data page End */
@media only screen and (max-width: 992px) {
    .log-in-window {
        margin: 30% auto;
    }
}

@media only screen and (max-width: 768px) {

    .log-in-window,
    .log-in-window_updatePassword {
        width: 100%;
        height: 100%;

    }

    .form__group {
        padding: 40px 17px 0;
    }

    .logo {
        max-width: 63%;
    }
}