* {
            padding: 0;
            margin: 0;
            box-sizing: border-box;
        }
        html {
            height: 100%;
        }
        body {
            font-family: 'Poppins', sans-serif;
            background: linear-gradient(to top, rgb(241, 140, 64) 10%, rgba(242, 186, 149, 0.4) 90%) no-repeat;
            display: flex;
            justify-content: space-between;
        }

        .login-div,
        .sign-div {
            width: 35%;
        }
        .password_message {
            height: 50px;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;

        }
        .password_message p{
            font-size: 0.875em;
            color: red;
            text-align: left;
        }
        .wrapper {
            margin-top: 15px;
            max-height: 100%;
            padding: 70px 80px 80px 80px;
        }

        .gradient-button {
            text-decoration: none;
            margin: 20px;
            font-size: 30px;
            padding: 20px;
            text-align: center;
            text-transform: uppercase;
            transition: 0.5s;
            background-size: 200% auto;
            color: rgb(0, 0, 0);
            box-shadow: 0 0 20px #eee;
            border-radius: 10px;
            width: 350px;
            box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
            transition: all 0.3s cubic-bezier(.25,.8,.25,1);
            cursor: pointer;
            display: inline-block;
            border-radius: 25px;
        }

        .gradient-button-1 {
            background-image: linear-gradient(to right, #e4c9f6 0%, #7c49f4 51%, #ffffff 100%);
        }

        .gradient-button-1:hover {
            background-position: right center;
        }

        .gradient-button-2 {
            background-image: linear-gradient(to right, #7c49f4 0%, #f2e4fb 51%, #7c49f4 100%);
        }

        .gradient-button-2:hover {
            background-position: right center;
        }

        .login-img {
            text-align: center;
        }

        .login-img img {
            width: 180px;
            height: 195px;
        }

        .admin-content {
            flex: 9;
            height: 500px;
            padding: 10px;
        }

        .admin-content h1 {
            text-align: center;
            margin-top: 50px;
            margin-left: 200px;
            font-size: 50px;
            color: rgb(0, 0, 0);
            text-shadow: #818181 3px 3px 5px;
        }

        .input-field {
            border-radius: 5px;
            padding: 5px;
            display: flex;
            align-items: center;
            cursor: pointer;
            border: 1px solid #400485;
            color: #000000;
        }

        .input-field:hover {
            color: #7b4ca0;
            border: 1px solid #7b4ca0;
        }

        input {
            border: none;
            outline: none;
            box-shadow: none;
            width: 100%;
            padding: 0px 2px;
            font-family: 'Poppins', sans-serif;
            background-color: white;
        }

        .container {
            margin-top: 20px;
            width: 700px;
            height: 500px;
            border-radius: 5px;
            background-color: #f2f2f2;
            padding: 20px;
        }

        .btn.btn-block {
            background-color: rgba(241, 140, 64);
            color: #fff;
        }

        .btn.btn-block:hover {
            background-color: rgba(239, 176, 112, 0.878);
        }

        .login-div, .sign-div {
            margin-left: 10%;
            background-color: white;
        }
        .sign-div {
            margin-right: 10%;
        }

        @media (max-width: 1200px) {
            body {
                display: block;
            }
            .login-div {
                margin-left: 0;
            }
            .sign-div {
                margin-right: 0;
                margin-top: 3% !important;
            }
            .login-div, .sign-div {
                width: 50%;
                margin: auto;
            }
            .wrapper {
                padding: 30px 10px;
                margin: 5px;
            }
        }