﻿* {
    font-family: 'Poppins';
    box-sizing: border-box;
}


body{
    height:100%;
    overflow: hidden;
    margin:0;
    padding:0;
}


@media only screen and (min-width: 768px) {
    .admin-login-form form{
        width: 350px;
    }
}


@media only screen  and (max-width: 767px) {
    .admin-login-form form {
        width: 100%;
    }
}


@media only screen and (min-width: 768px) and (max-width: 1024px) {

    .admin-login-form form {
        width: 650px;
    }

}



    .admin-login-container {
        height: 100vh;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        position:relative;
    }

        .admin-login-container .admin-login-form {
            height: 550px;
            width: 100%;
            display: grid;
            grid-template-rows: 100px 30px auto;
            gap: 25px;
            justify-content: center;
        }


    .admin-login-form .admin-logo {
        display: flex;
        justify-content: center;
    }

        .admin-login-form .admin-logo img {
            height: 100px;
            border-radius: 50%;
        }

    .admin-login-form span {
        text-align: center;
        font-size: 20px;
        color: #696969;
        font-weight: 500;
    }

    .admin-login-form form {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

        .admin-login-form form button {
            margin-top: 25px;
            border: 1px solid #fcac0c;
            color: #fff;
            outline: #fff;
            background-color: #fcac0c;
            height: 35px;
            position: relative;
            cursor: pointer;
        }

    .admin-login-form .admin-input-layout {
        display: flex;
        flex-direction: column;
        gap: 5px;
        width: 100%;
    }

    .admin-input-layout label {
        font-size: 13px;
        color: #808080;
        text-transform: uppercase;
    }

    .admin-input-layout input {
        border: 1px solid #D3D3D3;
        outline: none;
        height: 35px;
        padding: 0 10px;
        color: #696969;
    }

    .admin-input-layout .password-layout {
        display: grid;
        grid-template-columns: 1fr 55px;
        border: 1px solid #D3D3D3;
        height: 35px;
        overflow: hidden;
    }

    .password-layout input {
        border: none;
        outline: none;
        width: 100%!important;
        height: 100% !important;
    }

    .password-layout span {
        display: flex;
        justify-content: center;
        align-items: center;
    }

        .password-layout span svg {
            fill: #696969;
            height: 15px;
        }

.successfully-verified-container {
    position: absolute;
    height: 50px;
    width: 100%;
    top: 0;
    background-color: #008000;
    border: 1px solid #008000;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 0 15px;
}

    .successfully-verified-container span {
        color: #fff;
        font-size: 13px;
    }

.successfully-verified-container .close-btn{
    display: flex;
    align-items: center;
    color: #fff;
}

p.return-msg {
    font-size: 15px;
    margin: 10px 0;
    text-align: center;
    padding: 10px 0;
    width: 100%;
}

.error-message {
    background: #ffebe8;
    border: 1px solid red;
}

.spinner:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 25px;
    height: 25px;
    border: 3px solid #FFF;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spinner 1s ease-in-out infinite;
    -webkit-animation: spinner 1s ease-in-out infinite;
}
@keyframes spinner {
    to {
        transform: rotate(360deg);
    }
}

.success-message {
    background: #d4edda;
    border: 1px solid green;
}

.forgot-password-a {
    font-size: 12px;
    text-decoration: none;
    color: #000;
    text-align: right;
}


.admin-login-form form button:disabled {
    pointer-events: none;
    opacity: .7;
}