﻿@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');

html, body {
    background: #0D0D0D;
    font-size: 14px;
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8D8D8D;
    font-family: "Manrope", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: #ffffff;
}

input::placeholder {
    color: #8D8D8D;
}

.auth-block {
    border-radius: 1rem;
    width: 100%;
    border: 1px solid #272727;
    padding: 24px;
    background: rgb(19, 19, 19);
    background: linear-gradient(0deg, rgba(19, 19, 19, 1) 0%, rgba(25, 25, 25, 1) 100%);
}

.form-control {
    background: transparent;
    border-color: #8a8a8a;
    color: lightgray;
    padding: 20px 15px;
    height: 55px;
    border-radius: 10px;
}

.form-control:disabled, .form-control[readonly] {
    background: transparent;
    color: rgba(255, 255, 255, 0.4);
}

.alert-success {
    background: #17341C;
    border-color: #2F9341;
    color: #3FD25A;
}

.alert-danger {
    background: #471D1D;
    border-color: #AE4141;
    color: #FA5656;
}

.alert {
    padding: 30px;
    border-radius: 20px;
}

.auth-button {
    border-radius: 50px;
    padding: 20px 20px;
}

.content {
    position: relative;
    z-index: 10;
}

.text-danger {
    color: tomato;
}

.text-tomato:hover {
    color: tomato;
}

.btn-close {
    display: none;
}

.form-control.valid {
    border-color: #3AD769;
    color: #3AD769;
}

.form-control.input-validation-error {
    border-color: #EC4545;
    color: #EC4545;
}

.content-50 {
    width: 100%;
}

@media (min-width: 768px) { /* md breakpoint */
    .content-50 {
        width: 50%;
    }
}

.form-control:focus {
    background: transparent;
}

.form-control:focus {
    box-shadow: 0 0 0 .2rem rgba(0, 0, 0, .25);
}

.background {
    right: 0;
    width: 100%;
    position: absolute;
    background-image: url('/images/background.png');
    height: 100%;
    top: 0;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 0;
}

.jumbotron {
    background: transparent;
}

.btn {
    border-radius: 0.75rem;
    height: 48px;
    font-weight: 500;
}

.btn:hover {
    opacity: 0.80;
}

.btn-primary {
    background: #2463EB;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.3s ease-in-out;
    padding: 16px;
}

.btn-secondary {
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 16px;
}

.no-scrollbar::-webkit-scrollbar {
    display: none;
}
/* Hide scrollbar for IE, Edge and Firefox */
.no-scrollbar {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}
