﻿/* loign start*/
.form-control {
    border: 1px solid #e1e1e1;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-radius: 5px;
    /*-webkit-transition: all .3s ease;
    transition: all .3s ease;*/
    background-color: #fff;
    color: #858585;
    font-weight: 400;
    position: relative;
}

.flip-card {
    background-color: transparent;
    height: 250px;
    width: 40%;
    perspective: 1000px; /* Remove this if you don't want the 3D effect */
    position: absolute;
}

    .flip-card h1 {
        text-align: center;
        color: #a4c639;
        font-weight: 600;
    }

    .flip-card button {
        background-color: #a4c639;
        color: #fff;
        padding: 14px 20px;
        margin: 8px 0;
        border: none;
        border-radius: 10px;
        cursor: pointer;
        width: 100%;
    }

/* This container is needed to position the front and back side */
.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

/* Do an horizontal flip when you move the mouse over the flip box container */
/*.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}*/

/* Position the front and back side */
.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 75%;
    -webkit-backface-visibility: hidden; /* Safari */
    backface-visibility: hidden;
    border-radius: 20px;
    padding-top: 5px;
}

/* Style the front side (fallback if image is missing) */
.flip-card-front {
    background-color: white;
    color: black;
    /*transform: rotateY(180deg);*/
}

/* Style the back side */
.flip-card-back {
    background-color: white;
    color: black;
    background-image: url('/Images/login-avatar.jpg');
    background-size: cover;
    background-position: center;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.flip-card-overlay {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    width: 30%;
    height: 40%;
    z-index: 1;
    margin: 150px 800px;
    border-radius: 10px;
    opacity: 0.75;
}
