﻿@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

h1, h2, h3, h4, h5 {
    font-weight: 400;
}

strong {
    font-weight: 700;
}

body, p, li, a, button {
    font-family: 'Roboto', sans-serif;
}

input[type=text], input[type=email], input[type=tel], input[type=password] {
    width: 100%;
    padding: 7px;
    border-radius: 3px;
    border: 1px solid rgb(226, 226, 226);
    transition: all ease .5s;
    margin-bottom: 9px;
}

    input[type=text]:focus, input[type=text]:focus-visible,
    input[type=email]:focus, input[type=email]:focus-visible,
    input[type=tel]:focus, input[type=tel]:focus-visible,
    input[type=password]:focus, input[type=password]:focus-visible {
        box-shadow: 0 0 10px #f2f2f2;
        border: 1px solid rgb(137, 124, 255);
        outline: none;
    }

.login_wrapper1 {
    display: flex;
    align-items: center;
    border: 1px solid;
    position: absolute;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
}

.frogot {
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
}

button.Login_btn {
    display: block !important;
    width: 100%;
    box-sizing: border-box;
    padding: 5px;
    font-size: 18px;
    margin: 10px;
    text-transform: uppercase;
    border-color: transparent;
    background: #00bcd4;
    border-radius: 4px;
    color: #fff;
    cursor: pointer;
    transition: all ease .5s;
}

    button.Login_btn:hover {
        background: #2196f3;
    }

.frogot {
    font-size: 14px;
    line-height: 21px;
    margin-top: 18px;
}

    .frogot a {
        color: #3f51b5;
        font-weight: 700;
        text-decoration: none;
        transition: all ease .5s;
    }

        .frogot a:hover {
            color: #00bcd4;
        }

.login_body label {
    color: red;
    font-size: 13px;
    color: #000;
}

.sign_in h2 {
    margin-bottom: 7px;
}
.mud-main-content {
    position: absolute;
    height: 100vh;
    width: 100%;
    padding: 0;
    /* border: 1px solid red; */
    box-sizing: border-box;
}