/*------------------------------------------------------------------
[Master Stylesheet]

Author: Breaking Limits Multimedia House LLC
Version:	1.0

This file contains the styling for the actual theme, this
is the file you need to edit to change the look of the
theme.
-------------------------------------------------------------------*/

/*------------------------------------------------------------------
Table of contents

    I.General
    II.Page Preloader
    III.Header & Navigation
    IV.Image Section
    V.About Section
    VI.Games Section
    VII.Team Section
    VIII.Devlog Section
    IX.Fourm Section
    X.Footer
    XI.404 Page
    XII.Responsive Styles
    XIII. Login Section

-------------------------------------------------------------------*/

/* --------------------------- /////////// I. GENERAL /////////// --------------------------- */
/* -Color- */
.colored {
    color: #c70000;
}

/* -Link Styling- */
a {
    color: #c70000;
    font-family: 'Teko', sans-serif;
	text-decoration: none;
}

a:visited {
    color: #222;
    text-decoration: none;
}

a:hover {
    color: #c70000;
	text-decoration: underline;
}

a:active {
    color: #c70000;
    text-decoration: underline;
}

a:focus {
    color: #c70000;
    text-decoration: none;
}

/* Resets */
html, body {
    background-color: #111;
    background-repeat: repeat;
    color: #FFF;
    font-size: 16px;
    line-height: 1.5rem; /* 24px */
    max-width: 100%;
	overflow-x: hidden;
}

/* Full width fluid container */
.full-width {
    padding-left: 0;
    padding-right: 0;
}

/* Text Styling */
h1 {
    font-size: 2.25rem; /* 36px */
    font-family: 'Teko', sans-serif;
    letter-spacing: 5px;
}

h2 {
    font-size: 1.50rem; /* 24px */
    font-weight: 500;
}

h3 {
    font-size: 1.25rem; /* 20px */
    font-weight: 400;
    font-family: Arial, Helvetica, sans-serif;
}

h4 {
    font-size: 1.10rem;
    font-weight: 300;
}

p {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.9375rem; /* 15px */
    padding: 5px 5px 5px 0;
    margin: 0;
}

.strong {
    font-weight: bold;
}

.subtle {
	color: #999;
}

.spaced {
    letter-spacing: 5px;
}

.text-center {
	text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

ul {
    list-style-type: none;
    padding: 0;
}

/* -Margins and Floats- */
.floated-left {
     float: left;
}

.floated-right {
    float: right;
}

.inline {
	display: inline;
}

.offset {
	margin-left: 10px;
}

.tiny-margin {
    margin-bottom: 1.5em /* 24px */
}

.small-margin {
	margin-bottom: 3em; /* 48px */
}

.medium-margin {
	margin-bottom: 6em; /* 96px */
}

.large-margin {
	margin-bottom: 5em; /* 192px */
}

/* -<hr>- */
hr {
    width: 100%;
    height: 2px;
    background: #c70000;
    margin: 20px 0;
    border: none;
}

.hr-short {
    width: 100px;
    height: 2px;
    margin: 5px auto;
}

.short-hr-left::after {
    border-top: 2px solid;
    border-color: #c70000;
    content: "";
    display: block;
    height: 1px;
    width: 60px;
    margin: 13px 0 0 0;
}

.short-hr-center::after {
    border-top: 2px solid;
    border-color: #c70000;
    content: "";
    display: block;
    height: 1px;
    width: 60px;
    margin: 13px auto 0 auto;
}

/* General input fields */
input {
    height: 45px;
    padding-left: 10px;
    border: 1px solid #D4D4D4 !important;
}

input:focus {
    border: 1px solid #333;
    outline: none;
}

textarea {
    height: 150px;
	width: 100%;
    max-width: 100%;
	padding-top: 10px;
	padding-left: 10px;
    border: 1px solid #D4D4D4 !important;
}

textarea:focus {
    border: 1px solid #333;
    outline: none;
}

/* -General Button Styles */
button {
    outline: none !important;
}

.button {
	background: #c70000;
    border: none;
    border-radius: 2px;
    color: #FFF;
    font-family: 'Teko', sans-serif;
    font-weight: 500;
	display: block;
	height: auto;
    width: auto;
    margin-left: auto;
    margin-right: auto;
	margin-top: 20px;
	margin-bottom: 20px;
    padding: 5px 15px;
    outline: none;
	transition: all 0.2s ease;
    cursor: pointer;
}

.button:hover {
	background: #FFF;
	color: #2B2B2B;
}

/* Indention */
.indent {
    text-indent: 30px;
}

#indent {
    text-indent: 30px;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
  
footer {
    margin-top: auto;
}

/* --------------------------- /////////// II. PAGE PRELOADER /////////// --------------------------- */
/* -Loading Screen- */
#loader-wrapper {
    background: #111;
    height: 100%;
    width: 100%;
    position: fixed;
    left: 0;
    top: 0;
    text-align: center;
    z-index: 1050;
}

.loader-logo {
    position: relative;
    color: #FFF;
    top: 43%;
    font-family: 'Teko', sans-serif;
    letter-spacing: 5px;
}

#progress {
    width: 0;
    height: 2px;
    background: #c70000;
    position: relative;
    top: 45%;
}

.loader-text {
    position: relative;
    color: #FFF;
    top: 48%;
}

/* -Loading Screen Animation- */
.loaded {
    -moz-transform: translate3d(0px, -100%, 0px);
    -webkit-transform: translate3d(0px, -100%, 0px);
    -o-transform: translate(0px, -100%);
    -ms-transform: translate(0px, -100%);
    transform: translate3d(0px, -100%, 0px);
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

/* --------------------------- /////////// III. HEADER & NAVIGATION /////////// --------------------------- */
#logo {
    font-family: 'Teko', sans-serif;
    font-size: 1.75rem; /* 28px */;
    letter-spacing: 5px;
}

.navbar-dark {
    background-color: rgba(0,0,0,0);
    border: 1px solid rgba(0,0,0,0);
    z-index: 900;
    transition: 0.3s;
}

.scrolled {
    background-color: rgba(0,0,0,0.8); /* navbar background gradient */
    z-index: 900;
}

.nav-link {
    font-size: 1.125rem;
    font-weight: 500;
    margin-top: 5px;
    transition: 0.2s;
}

.navbar-dark .navbar-nav .nav-link {
    color: #FFF;
}

.navbar-dark .navbar-nav .nav-link:hover {
    color: #c70000;
}

.navbar-dark .navbar-nav .nav-link:active {
    color: #c70000;
}

.navbar-dark .navbar-nav .nav-link:focus {
    color: #c70000;
}

.navbar-toggler {
    border: none;
    cursor: pointer;
}

#hamburger .icon-bar {
    display: block;
    height: 2px;
    width: 25px;
    background: #FFF;
    margin: 7px 0;
    transition: .3s ease-in-out;
}

/* - Mobile menu animation - */
#hamburger .icon-bar:nth-child(1) {
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
}

#hamburger .icon-bar:nth-child(2) {
   -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
}

#hamburger .icon-bar:nth-child(3) {
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
}

#hamburger.open .icon-bar:nth-child(1) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

#hamburger.open .icon-bar:nth-child(2) {
    width: 0%;
    opacity: 0;
}

#hamburger.open .icon-bar:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.company_name h2 {
    font-family: 'Teko', sans-serif;
    color: white;
}

#navigation {
    padding: 5px;
}

/* --------------------------- /////////// IV. IMAGE SECTION /////////// --------------------------- */
/* -Image Overlay- */
.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
}

/* -Progress Bar- */
/*#progress-bar {
    width: 0px;
    height: 3px;
    position: relative;
    background: #E48632;
}*/

/* -Image Caption- */
#image-slider .carousel-caption {
    top: 35%;
}

#image-slider .carousel-caption h1 {
    font-weight: 300;
    font-size: 3rem;
}

.carousel-caption-left {
    position: absolute;
    top: 30%;
    left: 15%;
    right: 15%;
    margin: auto;
    width: 50%;
    height: auto;
}

.carousel-caption-left a {
    display: inline-block;
}

.carousel-inner > .carousel-item > img {
    width: 100%;
}

.image-caption {
    font-family: 'Teko', sans-serif;
}

/* --------------------------- /////////// V. ABOUT /////////// --------------------------- */
#support-image {
    margin: 0 0 0 20%;
}

/* --------------------------- /////////// VI. GAME SECTION /////////// --------------------------- */
.game-tags {
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
    padding: 10px;
    border-left: 2px solid #c70000;
}

.game-tags li {
    display: inline;
    margin: 0 0 0 15px;
    font-family: 'Teko', sans-serif;
    font-size:1.10rem; /* 20px */;
    font-weight: 500;
}

.game-tags li a {
    color: #FFF;
    text-decoration: none;
}

.game-tags li a:hover {
    color: #c70000;
    cursor: pointer;
}

.game-tags li a:focus {
    color: #c70000;
}

.game-card {
    width: 100%;
    margin: 0 0 3.5em 0;
    min-height: 270px;
    height: auto;
}

.lightbox .lb-image {
    border: 4px solid #111;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8));
    border-left: 2px solid #c70000;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: 0.3s ease;
}

.overlay i {
    position: absolute;
    top: 40%;
    left: 45%;
}

.overlay:hover {
    opacity: 1;
}

.game-card-left {
    padding: 0;
}

.game-card-left img {
    height: 100%;
    width: 100%;
    min-height: 270px;
}

.game-card-right {
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
    padding: 20px 40px;
    margin: 0;
}

.game-card-right h2 {
    margin-bottom: 0;
}

.game-card-right > .short-hr-left::after {
    margin: 5px 0;
}

.tags {
    font-size: 14px;
    padding-top: 0;
}

.game-description {
    margin: 35px 0;
    text-indent: 30px;
}

/* -- Modal -- */
.expand {
    cursor: pointer;
}

.game-modal .modal-header {
    height: 150px;
    background-position: bottom;
    background-size:  cover;
    border-bottom: 1px solid #555;
}

.game-modal .modal-title {
    margin: 5% 0 0 5%;
}

.game-modal img {
    margin: 5px 0 50px 0;
}

.modal-vid {
    width: 100%;
    max-width: 768px;
    height: 415px;
    margin: 20px 0 60px 0;
    border: none;
}

/* -- Buttons -- */
.steam-btn {
    display: inline-block;
    margin: 25px 0 0 0;
}

.steam-btn a {
    display: inline-block;
    min-width: 150px;
    height: auto;
    width: auto;
    background: #DDD;
    border-radius: 3px;
    padding: 8px;
    border: none;
    color: #111;
    cursor: pointer;
    transition: 0.2s;
    text-align:center
}

.steam-btn:hover a {
    background: #000;
    color: #FFF;
}

.steam-btn i {
    float: left;
}

.steam-btn p {
    float: right;
    line-height: 20px;
    font-weight: bold;
}

.button-store {
    display: inline-block;
    width: auto;
    height: auto;
    padding: 5px 22px;
    border-radius: 5px;
    margin: 30px 10px 0 0;
    color: #111;
    background: #DDD;
    border: none;
    cursor: pointer;
    transition: 0.2s;
}

.button-store:hover {
    background: #000;
    color: #FFF;
}

.button-store > i {
    float: left;
    display: inline;
    margin-top: 5px;
}

.button-store  p {
    float: right;
    padding: 0 0 0 10px;
}

/* .reviews {
    width: auto;
    display: inline-block;
    float: right;
    margin: 20px 0 0 0 ;
    text-align: center;
}
.reviews a {
    color: #FFF;
}
.reviews a:hover {
    color: #FFF;
}
.reviews a:active {
    color: #FFF;
}
.reviews a:visited {
    color: #FFF;
} */

.score-card {
    display: inline-block;
    min-height: 70px;
    min-width: 90px;
    width: auto;
    height: auto;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3));
    text-align: center;
    margin: 0 5px 0 0;
    padding: 5px;
    border-radius: 2px;
    transition: 0.2s;
}

.score-card:hover {
    background: #FFF;
}

.score-card:hover p {
    color: #111;
}

.score-card p:nth-of-type(2) {
    font-size: 14px;
    padding-top: 0;
}

.score {
    font-size: 1.3rem;
    font-weight: bold;
    margin-top: 5px;
    padding-bottom: 0;
}

.rating {
    width: auto;
    height: auto;
    padding: 10px 20px;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3));
    text-align: center;
    float: right;
    border-radius: 2px;
    margin: 20px 0 0 0;
}

.rating ul {
    margin: 0;
}

.rating ul li {
    display: inline;
    margin: 0 5px 0 0;
}

.rating p {
    font-size: 1.5rem;
}

.games-portfolio {
    display: none;
}
  
.games-portfolio.show {
    display: block;
}

.game-description {
  padding: 1rem;
  color: white;
  border-width: 3px;
  border-style: solid;
  border-image: linear-gradient(to bottom, red, rgba(0, 0, 0, 0)) 1 100%;
}

/* --------------------------- /////////// VII. TEAM SECTION /////////// --------------------------- */
#full-row {
    display: flex;
    align-items: center;
    justify-content: center;
} 

#team figure {
    display: inline-block;
    position: relative;
    text-align: center;
    overflow: hidden;
}

#team figure img {
    border-radius: 3px;
    border-bottom: 2px solid #c70000;
}

.team-caption ul {
    margin-top: 10px;
}

.team-caption ul li {
    display: inline;
    margin: 0 5px;
}

.team-caption ul li > a {
    color: #EEE;
}

.team-caption ul li > a:hover {
    color: #c70000;
}

.team-caption {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6));
    text-align: center; 
    padding: 40% 20px 20px 20px;
    z-index: 5;
    opacity: 0;
    transition: all 0.3s ease;
    font-family: Arial, Helvetica, sans-serif;
}

#team figure:hover > .team-caption {
    opacity: 1;
}

#team figure:hover > img {
    filter: blur(2px);
}

.team-name {
    font-size: 1.5rem;
    padding-bottom: 0px;
    font-family: 'Teko', sans-serif;
}

.gallery-item {
    padding: 0 2.5px;
}
.grid-gallery .row {
    margin: 0 0 5px 0;
}

.overlay.gallery {
    left: 0;
    width: 100%;
    border: none;
}

.social-links {
    float: right;
}

.social-links li {
    display: inline;
    margin-left: 15px;
}

.social-links li a {
    color: #FFF;
}


/* --------------------------- /////////// VIII. DEVLOG SECTION /////////// --------------------------- */
.company-logo {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 50%;
    padding-top: 100px;
}

.developer-blog {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 25%;
    padding-top: 50px;
    padding-bottom: 50px;
}

.container {
    margin: auto;
}

article {
    background-color: #292b2e;
    border-width: 4px;
    margin: 0px;
    width: 100%;
    margin-bottom: 25px;
    color: #252525;
    padding: 30px;
    padding-top: 15px;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    border-image-slice: 33%;
    display: inline-block;
}

.article-title {
    position: relative;
}

.article-title h1 {
    color: white;
}

.article-title h3 {
    color: white;
}

.color {
    color: rgb(255, 0, 0);
}

.user {
    display: flex; /* Use flexbox layout */
    align-items: center; /* Align items vertically in the center */
}

.avatar {
    margin-right: 10px; /* Add margin to create space between avatar and article info */
}

.article-info {
    flex: 1; /* Allow the article info to expand and fill the remaining space */
}

.user-title {
    margin: 0; /* Remove default margin */
}

.date-title {
    margin: 0; /* Remove default margin */
}

.post-comments {
    padding-top: 25px;
    padding-bottom: 25px;
}
.post-comments {
    color: white;
}

.custom-hr {
    width: 50%;
    margin: 0;
    border: none;
    border-top: 1px solid;
}

/* Three image containers (use 25% for four, and 50% for two, etc) */
.column {
    float: left;
    width: 22.22%;
    padding: 5px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 25px;
}
  
/* Clear floats after image containers */
.row::after {
    content: "";
    clear: both;
    display: table;
}

/* --------------------------- /////////// IX. FOURM SECTION /////////// --------------------------- */
* {
    box-sizing: border-box;
}

.description-title {
    color: white;
}

a {
    color: red;
    font-weight: bolder;
    text-decoration: none;
}

.forum-container {
    margin: 20px;
    padding: 20px;
}

.subforum {
    margin-top: 20px;
}

.subforum-title {
    background-color: #292b2e;
    padding: 5px;
    border-radius: 5px;
    margin: 4px;
}

.subforum-row {
    display: grid;
    grid-template-columns: 7% 60% 13% 20%;
}

.subforum-column {
    padding: 10px;
    margin: 4px;
    border-radius: 5px;
    background-color: #292b2e;
}

.center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.subforum-icon i {
    font-size: 45px;
}

.subforum-description * {
    margin-block: 0;
}

.subforum-stats {
    font-size: 12px;
}

.subforum-devider {
    display: block;
    border: 0;
    height: 1px;
    background-image: linear-gradient(to right, rgba(190, 190, 190, 0), rgba(255, 255, 255, 0.75), rgba(190, 190, 190, 0));
}

.table-head {
    display: flex;
}

.table-head div {
    padding: 5px;
    margin: 2px;
    background-color: #2c2c2c;
    font-weight: bold;
}

.table-head .status {
    flex: 5%;
}

.table-head .subjects {
    flex: 70%;
}

.table-head .replies {
    flex: 10%;
}

.table-head .last-reply {
    flex: 15%;
}

.forum-info {
    padding: 20px;
    background-color: #2c2c2c;
}

.chart {
    font-weight: bold;
}

.table-row {
    display: flex;
}

.table-row .status, .table-row .subjects, .table-row .replies, .table-row .last-reply {
    padding: 5px;
    margin: 2px;
    background-color: #2c2c2c;
}

.table-row .status {
    flex: 5%;
    font-size: 30px;
    text-align: center;
}

.table-row .subjects {
    flex: 70%;
}

.table-row .replies {
    flex: 10%;
}

.table-row .last-reply {
    flex: 15%;
}

.pagination {
    padding: 20px;
    font-size: 15px;
}

.pagination a {
    color: white;
    margin-inline: 5px;
    padding: 5px 10px;
    border: solid 0.5px #fff;
}

.pagination a:hover {
    opacity: 0.5;
}

.navigate {
    margin-block: 20px;
    font-weight: lighter;
    font-size: 24px;
}

.navigate a {
    color: white;
}

.navigate a:hover {
    color: #c70000;
    font-weight: bolder;
}

.subjects a {
    color: white;
}

.subjects a:hover {
    color: #c70000;
    font-weight: bolder;
}

/* --------------------------- /////////// X. FOOTER /////////// --------------------------- */
#footer {
    width: 100%;
    min-height: 70px;
    height: auto;
    background: #070707;
    border-top: 2px solid #c70000;
    padding: 20px 0 0 0;
    margin-top: 20px;
}

.social-links {
    float: right;
}

.social-links li {
    display: inline;
    margin-left: 15px;
}

.social-links li a {
    color: #FFF;
}

#copyright {
    float: left;
    font-family: 'Teko', sans-serif;
}

/* --------------------------- /////////// XI. 404 /////////// --------------------------- */
#container-404 {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}

#container-404 .row-fluid {
     margin-top: 18%;
}

.text-404 h1 {
    font-family: 'Times New Roman', Times, serif;
    font-size: 4rem;
}

.text-404 a {
    display: inline-block;
    text-decoration: none;
}

/* --------------------------- /////////// XII. RESPONSIVE STYLE /////////// --------------------------- */
/* To apply different styles or CSS rules based on specific media conditions or device characteristics */
@media (max-width : 991px) {
    .nav-item > a::first-letter {
    color: red;
    }
    .navbar-dark {
        background-color: rgba(0,0,0,0.4); /* navbar background gradient */
    }
    .scrolled {
        background-color: rgba(0,0,0,0.8); /* navbar background gradient */
    }
    #footer {
        text-align: center;
        padding: 10px 0 0 0;
    }
    .social-links {
        float: none;
    }
    #copyright {
        float: none;
        margin-bottom: 5px;
    }
    #container-404 .row-fluid {
        margin-top: 40%;
    }
    
    .container {
        margin: auto;;
    }

    .subforum-row {
        display: grid;
        grid-template-columns: 25% 75%;
        grid-template-rows: 65% 35%;
    }
}

@media (max-width : 767px) {
    .large-margin {
	   margin-bottom: 4em; /* 96px */
    }

    .medium-margin {
        margin-bottom: 3em;
    }
    
    .small-margin {
        margin-bottom: 2em;
        text-indent: 30px;
    }
    .heading {
        font-size: 1.50rem;
    }
    hr {
        margin: 0;
    }

    #support-image {
        display: block;
        margin: 2em auto 0 auto;
    }

    .game-card {
        margin: 0 0 3em 0;
    }

    .steam-btn {
        display: block;
        text-align: center;
    }

    .button-store:nth-of-type(2) {
        float: right;
    }

    .rating {
        display: block;
        margin: 15px auto 0 auto;
        float: none;
    }

    #team figure {
        margin: 20px auto;
    }

    .gallery-item {
        margin: 5px 0;
    }

    .grid-gallery .row {
        margin: 0;
    }

    #newsletter input {
        width: 100%;
        display: block;
        margin: 20px 0;
    }

    #newsletter button {
        width: 100%;
        display: block;
    }

    #contactForm {
        margin: 0 0 3em 0;
    }

    .text-404 h1 {
        font-size: 3.5rem;
    }

    .container {
        margin: 10px;
        padding: 10px;
    }

    .subforum-row {
        display: grid;
        grid-template-columns: 25% 75%;
        grid-template-rows: 65% 35%;
    }
}

@media (max-width : 480px) {
    .game-card-left img {
        min-height: 0;
    }

    .score-card {
        margin: 5px 0;
    }

    #hero-slider .carousel-caption h1 {
        font-size: 1.5rem;
    }

    .carousel-caption-left h1 {
        font-size: 1rem;
        margin-top: 10%;
        text-align: center;
    }

    .carousel-caption-left p {
        display: none;
    }

    .carousel-caption-left a {
        display: none;
    }

    .button-store {
        margin: 5px auto;
    }

    .button-store:nth-of-type(2) {
        float: none;
    }

    .container {
        margin: 10px;
        padding: 10px;
    }

    .subforum-row {
        display: grid;
        grid-template-columns: 25% 75%;
        grid-template-rows: 65% 35%;
    }
}

/* --------------------------- /////////// XIII. Login Section /////////// --------------------------- */
/*Sign In*/
.form-box {
    width: 90%;
    max-width: 450px;
    top: 50%;
    left: 50%;
    background: #fff;
    padding: 50px 60px 70px;
    text-align: center;
    transform: translate(-50%, -50%);
    position: absolute;
}

.lostpassword, .signup {
    color: #000;
}

.input-group {
    padding-left: 15%;
}

.input-field {
    padding-bottom: 5%;
}

form p {
    font-size: 13px;
}

form p a {
    text-decoration: none;
}

.btn-field {
    width: 100%;
    display: flex;
    justify-content: space-around;
}

.btn-field {
    flex-basis: 48%;
    height: 40px;
    border-radius: 20px;
    cursor: pointer;
    transition: background 1s;
}

.input-group {
    height: 200px;
}

.accountaccess-group p {
    color: #000;
}

.accountaccess-group a {
    color: red;
}

/*Login*/
.login, .signupgroup {
    color: #000;
}

.signup-paragraph {
    text-align: center;
}

.signupgroup a {
    color: red;
}

.forgotpassword-group a {
    color: red;
}

.forgotpassword-group p {
    color: black;
    text-align: center;
}