﻿
@font-face {
    font-family: 'Metropolis-Bold';
    src: url('../../fonts/Metropolis-Bold.otf') format('opentype');
}

@font-face {
    font-family: 'Metropolis-Regular';
    src: url('../../fonts/Metropolis-Regular.otf') format('opentype');
}

@font-face {
    font-family: 'Metropolis-Medium';
    src: url('../../fonts/Metropolis-Medium.otf') format('opentype');
}

@font-face {
    font-family: 'Metropolis-SemiBold';
    src: url('../../fonts/Metropolis-SemiBold.otf') format('opentype');
}
body {
    font-family: Metropolis, sans-serif;
    color: #ffffff;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

.wrapper_div {
    background-image: url('../_Images/login_bg.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index: 5;
    min-height: 100vh;
    max-width: 100%;
}

.box-div {
    color: white !important;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    padding: 0 0 2rem 0;
    right: 0;
    min-width: 400px;
    width: 400px;
    margin: 0 auto;
    background-color: rgba(0, 0, 0, 0.5);
    background-color: #ffffff;
    border-radius: 25px;
}

input[type=text], input[type=password] {
    width: 100%;
    padding: 12px 7px;
    display: inline-block;
    border: 1px solid #ccc;
    box-sizing: border-box;
    border-radius: 10px;
    font-size: 15px;
    border-color: #2B3137;
    background: #2B3137;
    outline: none;
    color: #ffffff;
    margin-top: .3rem;
}

button {
    background-color: #ED1B24;
    color: #ffffff;
    padding: 12px 20px;
    border: none;
    cursor: pointer;
    width: 100%;
    font-size: 20px;
    border-radius: 10px;
    outline: none;
}
    button:hover {
        opacity: 0.8;
    }

.label {
    color: #2b3137;
    font-family: 'Metropolis-Regular';
}
hr {
    padding: 0;
    margin: 0;
}
a {
    color: var(--Login-button-bg-color);
    text-decoration: none;
}
 a:hover {
        opacity: 0.8;
        text-decoration: underline;
}
img.avatar {
    width: 40%;
    border-radius: 50%;
}
.container {
    padding: 1rem 2.5rem;
}
.text-danger {
    color: #ed1b24;
    font-size: 14px;
}
.validation-summary-errors > ul {
    padding: 0;
    list-style: none;
    text-align: center;
}

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (max-width: 768px) {
    .box-div {
        max-width: 85%;
        min-width: 350px;
    }
}
@media only screen and (max-width: 320px) {
    .box-div {
        max-width: 300px;
        min-width: 300px;
    }
}
@media only screen and (min-width: 769px) and (max-width: 991px) {
    .box-div {
        min-width: 390px;
    }
}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) and (max-width: 1399px) {

    .box-div {
        min-width: 390px;
    }
}

