﻿
body {
    margin: 0;
    font-family: Roboto, -apple-system, 'Helvetica Neue', 'Segoe UI', Arial, sans-serif;
    background-image: linear-gradient(to left top,#55acee,#4c93cf,#427ab0,#376292,#2b4c75);
    background-size: cover;
    background-repeat: repeat;
    /*background-image: url('loginback.jpg');*/
}

.Main-form {
    width: 700px;
    height: auto;
    position: relative;
    top: auto;
    bottom: auto;
    /*margin: auto;*/
    background-color: #fff;
    padding: 10px;
    font-size: 0;
    padding: 0 15px;
    border-radius: 15px;
    box-shadow: 0 0 20px rgb(0 0 0 / 20%);
    margin-bottom: 5rem;
}
@media all and (min-width: 320px) and (max-width: 780px) {
    .Main-form {
        margin: 0px !important;
    }
    .Main-form {
        width: 100%;
        height: auto;
        position: relative;
        top: auto;
        bottom: auto;
        /*margin: auto;*/
        background-color: #fff;
        padding: 10px;
        font-size: 0;
        padding: 0 15px;
        border-radius: 15px;
        box-shadow: 0 0 20px rgb(0 0 0 / 20%);
        margin-bottom: 5rem;
    }
}

.nav-link active {
    background-color: rgba(17, 173, 17, 0.811) !important;
    color: #fff;
}

label {
    font-family: sans-serif;
    font-size: 1rem;
    padding-right: 10px;
}

select {
    font-size: 0.9rem;
    padding: 2px 5px;
}

.PR-form-horizontal .PR-signin {
    color: rgba(255,255,255,.8);
    background: #3566c3 /*linear-gradient(to right,#55acee,#2b4c75);; */;
    font-size: 15px;
    font-weight: 500;
    text-transform: capitalize;
    font-weight: 700;
    letter-spacing: 1px;
    width: auto;
    margin: 0 0 10px 0;
    border: none;
    border-radius: 5px;
    transition: all .3s ease;
}

.form-control {
    resize: none;
    color: #000;
    font-weight: bold;
    border: 0;
    background-color: #e6effb;
    border: 1px solid #ccc;
    border-radius: 5px !important;
    padding: 5px 10px;
    height: 38px;
    max-width: 100%;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    transition: all 300ms linear;   
    font-size:14px;
}


    option {
        font-weight: normal;
        display: block;
        white-space: nowrap;
        min-height: 1.2em;
        padding: 0px 2px 1px;
    }

    .PR-form-container {
        background: linear-gradient(to right,#55acee,#ffba00);
        font-size: 0;
        padding: 0 15px;
        border-radius: 15px;
        box-shadow: 0 0 20px rgb(0 0 0/20%);
        margin-bottom: 5rem;
    }

    .W_logo img {
        width: 15%;
        padding: 20px;
    }

    .Form_heading {
        font-size: 22px;
        color: black;
        /*margin: 10px 10px;*/
        padding: 15px;
        font-family: "Amazon Ember",Arial,sans-serif;
    }


    $pri: #128CFC;
    $sec: #fffffe;
    $dark-pri: #0B5AA2;
    * {
        box-sizing: border-radius;
        font-family: 'Rubik', sans-serif;
    }

    .container {
        /*border: 1px solid black;*/
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        margin: auto;
        display: grid;
        place-items: center;
        background-color: $pri;
    }

    .items {
        width: 300px;
        background: $sec;
        box-shadow: 0 3px 6px rgba(black,0.16), 0 3px 6px rgba(black,0.23);
        border-top: 10px solid $dark-pri;
    }

    .items-head p {
        padding: 5px 20px;
        margin: 10px;
        color: #0B5AA2;
        font-weight: bold;
        font-size: 20px;
    }

    .items-head hr {
        width: 20%;
        margin: 0px 30px;
        border: 1px solid $dark-pri;
    }

    .items-body {
        padding: 10px;
        margin: 10px;
        display: grid;
        grid-gap: 10px;
    }

    .items-body-content {
        padding: 10px;
        padding-right: 0px;
        display: grid;
        grid-template-columns: 10fr 1fr;
        // background-color: lightblue;
        font-size: 13px;
        grid-gap: 10px;
        border: 1px solid transparent;
        cursor: pointer;
    }

        .items-body-content:hover {
            border-radius: 15px;
            border: 1px solid $dark-pri;
        }

        .items-body-content i {
            align-self: center;
            font-size: 15px;
            color: $dark-pri;
            font-weight: bold;
            animation: icon 1.5s infinite forwards;
        }

    @keyframes icon {
        0%,100% {
            transform: translate(0px);
        }

        50% {
            transform: translate(3px);
        }
    }



