
/* Import Component Styles */
/* Benzin Font Faces */
/* Lunar Type Font Face */
@font-face {
    font-family: 'Lunar Type';
    src: url('../fonts/lunar-type/LunarTypeRegular-ovY1q.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'Benzin';
    src: url('../fonts/Benzin/Benzin-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'Benzin';
    src: url('../fonts/Benzin/Benzin-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: 'Benzin';
    src: url('../fonts/Benzin/Benzin-Semibold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}
@font-face {
    font-family: 'Benzin';
    src: url('../fonts/Benzin/Benzin-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}
@font-face {
    font-family: 'Benzin';
    src: url('../fonts/Benzin/Benzin-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
}
@import url('./components/input.css');

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Benzin", sans-serif;
}

body {
    font-family: 'Benzin', sans-serif;
    background: #000;
    min-height: 100vh;
    color: #ffffff;
    overflow-x: hidden;
}

/* Navigation Styles */
.navbar {
    background: rgba(0, 0, 0, 0.8) !important;
    backdrop-filter: blur(10px);
    /* border-bottom: 1px solid rgba(255, 255, 255, 0.1); */
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: #ffffff !important;
}

.navbar-nav .nav-link {
    color: #ffffff !important;
    font-weight: 500;
    margin: 0 10px;
    transition: all 0.3s ease;
    font-weight: 400 !important;
}

/* Main Content Styles */
.main-content {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.login-container {
    /* background: rgba(0, 0, 0, 0.4); */
    /* backdrop-filter: blur(20px); */
    /* border: 1px solid rgba(255, 255, 255, 0.1); */
    /* border-radius: 16px; */
    padding: 40px;
    width: 100%;
    /* max-width: 450px; */
    margin: 0 auto;
    /* box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3); */
}

.login-title {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #ffffff;
}

.login-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
    font-weight: 300;
    font-size: 20px;
}

/* Background Elements */
.bg-element {
    position: absolute;
    opacity: 0.1;
    pointer-events: none;
}

.bg-table {
    bottom: -10%;
    left: -20%;
    width: 60%;
    height: auto;
    transform: rotate(-15deg);
}

.bg-glasses {
    top: 20%;
    right: -10%;
    width: 30%;
    height: auto;
    opacity: 0.05;
}

/* Footer Styles */
.footer {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px 0;
    margin-top: auto;
}

.footer h5 {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer p, .footer a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin-bottom: 10px;
}

.footer p{
    display: block;
}

.footer a:hover {
    color: #ffffff;
}

.footer-bottom {
    padding-top: 20px;

    margin-top: 30px;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
}
footer{
    background: linear-gradient(0deg,rgba(0, 18, 63, 1) 0%, rgba(0, 18, 63, 0) 30%) !important;
}

.navbar-nav a{
    font-size: 20px;
}

hr.social-separator{
    border: 1px solid #1a1a1a;
}

.main-content{
    padding: 100px 0px;
}

.footer-text{
    font-size: 18px;
    color: #fff;
    line-height: 20px;
}

.bottom-title{
    font-size: 20px;
}
.bottom-title ~ a{
    font-size: 18px;
    color: #fff !important;
}

footer input{
    background-color: #fff !important;
    color: #1a1a1a !important;
}

.bottom-input-container{
    border-radius: 15px;
    overflow: hidden;
}

.bottom-input-container input{
    padding: 10px 20px;
    border-radius: 0px;
}
.bottom-input-container button{
    border-radius: 0px;
    background-color: #3f4afd;
    font-size: 20px;
    padding: 10px 20px;
}

@media (max-width: 768px) {
    .login-container {
        margin: 0px;
        width:100%;
        padding: 30px 20px;
    }
    
    .login-title {
        font-size: 1.5rem;
    }
    
    .bg-table {
        width: 80%;
        left: -30%;
    }
    .main-content{
        padding: 50px 0px !important;
    }
    .navbar-brand.d-block.d-lg-none{
        position: absolute;
        right: 0px;
        top: 0px;
        left: 40%;
    }
    .social-btn svg{
        margin-right: 10px !important;
    }
}

@media only screen and (max-width: 480px) {
    .tab-btn{
        font-size: 1rem !important;
    }
    .login-title {
        font-size: 1.2rem;
    }
    .login-subtitle{
        font-size: 1rem;
    }
    .create-account-btn{
        font-size: 0.8rem !important;
    }
    .footer-bottom p{
        font-size: 14px;
    }
    .bottom-title{
        margin: 20px 0px;
    }
}
