/* CSS Styles */
.container {
    max-width: none !important;
    padding: 0 !important;
    min-height: -webkit-fill-available;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #333;
    background-color: #1F1F1F;
    line-height: 1.6;
}

.landing-container {
    background: #1F1F1F;
    margin-top: 0;
    padding-top: 0;
    width: 100vw !important;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Hero Section */
.hero {
    position: relative;
    flex: 1;
    display: flex;
    align-items: center;
    overflow: visible;
    margin-top: 0;
    flex-direction: column;
    min-height: calc(100vh - 80px); /* Adjust based on your footer height */
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-wrapper {
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 40% 60%;
    min-height: inherit;
}

.hero-overlay {
    position: relative;
    z-index: 1;
    max-width: 600px;
    height: min-content;
    padding: 3rem;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 1rem;
    color: white;
    margin: auto;
    backdrop-filter: blur(20px);
}

.login-form {
    background: rgba(0, 0, 0, 0.40);
    box-shadow: 2px 5px 15.9px 0px rgba(0, 0, 0, 0.11);
    backdrop-filter: blur(20px);
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3rem;
    color: white;
}

.login-header {
    font-size: 2.5rem;
    font-weight: 600;
    color: #A4CEEC;
    text-align: left;
    margin-bottom: 4rem;
    font-family: 'Montserrat', sans-serif;
}

.login-form-container {
    display: flex;
    flex-direction: column;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-input {
    background: transparent;
    border: none;
    padding: 0 1rem 1rem;
    margin: 0 1rem 1rem;
    font-size: 1.2rem;
    color: white;
    font-family: 'Montserrat', sans-serif;
    border-bottom: 1px solid white;
    max-width: 400px;
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-input:focus {
    border-bottom-color: #0081DD;
}

.confirm-button {
    background-color: #0081DD;
    color: white;
    border: none;
    padding: 1.3rem 2.5rem;
    font-size: 1rem;
    font-weight: 300;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    margin-top: 1rem;
    width: min-content;
}

.confirm-button:hover {
    background-color: #0088cc;
}

/* Footer styling - this will stay at the bottom */
.landing-container > div[style*="background-color: #00aaff"] {
    flex-shrink: 0;
}

@media (min-width: 1024px) {
    .desktop-48{
        font-size:48px !important;
    }
    .desktop-42{
        font-size:42px !important;
    }
    .desktop-32{
        font-size:32px !important;
    }
    .desktop-29{
        font-size:29px !important;
    }
    .desktop-28{
        font-size:28px !important;
    }
    .desktop-20{
        font-size:20px !important;
    }

    .desktop-img{
        width: 44px !important;
        height: 44px !important;
    }
}

@media (max-width: 830px) {
    .landing-container {
        min-height: auto; /* Allow content to exceed viewport height on mobile */
    }
    
    .hero {
        min-height: auto; /* Remove height constraints on mobile */
        padding: 1rem 0;
    }
    
    .hero-wrapper {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
        min-height: auto;
        gap: 1rem;
    }
    
    .hero-overlay {
        padding: 1.5rem;
        max-width: 400px;
        margin-top: 7rem;
        margin-bottom: 2rem;
    }
    
    .hero-overlay .logo {
        max-width: 180px !important; /* Reduce logo size on mobile */
    }
    
    .login-form {
        padding: 6rem 2rem;
        margin: 1rem; /* Add 1rem margin */
        border-radius: 40px; /* Add 40px border radius */
    }
    
    .login-header {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
}


.hero-logo {
    width: 240px;
}

@media (max-width: 900px) {
    .hero-logo {
        width: 200px;
    }
}
@media (max-width: 768px) {
    .hero-logo {
        width: 180px;
    }
}

@media (max-width: 330px) {
    .hero-logo {
        width: 165px;
    }
}

@media (max-width: 900px) {
    .login-header {
        font-size: 2rem;
    }
    .form-input {
        font-size: 1.1rem;
        padding: 0 0.8rem 1rem;
        margin: 0 0.8rem 1rem;
    }
    .confirm-button {
        font-size: 1rem;
        padding: 1.1rem 2rem;
    }
}

@media (max-width: 768px) {
    .login-header {
        font-size: 1.8rem;
    }
    .form-input {
        font-size: 1.05rem;
        padding: 0 0.7rem 0.9rem;
        margin: 0 0.7rem 0.9rem;
    }
    .confirm-button {
        font-size: 0.98rem;
        padding: 1rem 1.7rem;
    }
}

@media (max-width: 600px) {
    .login-header {
        font-size: 1.5rem;
    }
    .form-input {
        font-size: 1rem;
        padding: 0 0.5rem 0.8rem;
        margin: 0 0.5rem 0.8rem;
    }
    .confirm-button {
        font-size: 0.95rem;
        padding: 1rem 1.5rem;
    }
}

@media (max-width: 400px) {
    .login-header {
        font-size: 1.2rem;
    }
    .form-input {
        font-size: 0.95rem;
        padding: 0 0.3rem 0.7rem;
        margin: 0 0.3rem 0.7rem;
    }
    .confirm-button {
        font-size: 0.9rem;
        padding: 0.8rem 1rem;
    }
}