@font-face {
    font-family: 'TechHeistFont';
    src: url('./cannet-agency-demo/CANNET AGENCY DEMO.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'TechHeistFont', Arial, sans-serif;
    overflow: hidden;
    background-repeat: no-repeat;
    background-size: cover; 
    background-color: black;
}

.fullscreen-section {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}
    
.fullscreen-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2;
}

.content-wrapper {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    padding-bottom: 300px;
}

.main-heading {
    color: #fff;
    margin-bottom: 2rem;
    text-shadow:   0 0 15px rgba(0, 255, 150, 1);
}

.title {
    font-size: 3rem;
    letter-spacing: 0.3em;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.subtitle {
    font-size: 1rem;
    letter-spacing: 0.2em;
    color: #00ff96;
    text-transform: uppercase;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 400px;
    width: 100%;
}

.login-input {
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid #00ff96;
    color: #fff;
    border-radius: 5px;
    text-align: center;
    transition: all 0.3s ease;
}

.login-input:focus {
    outline: none;
    box-shadow: 0 0 15px rgba(0, 255, 150, 0.5);
    background: rgba(0, 0, 0, 0.7);
}

.login-button {
    padding: 1rem 2rem;
    font-size: 1.2rem;
    background: #00ff96;

    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: bold;
}
.login-button a{
    text-decoration: none;
    color: #000;
}

.login-button:hover {
    background: #00cc77;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 255, 150, 0.8);
}

.login-button:active {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .title {
        font-size: 2.5rem;
        letter-spacing: 0.2em;
    }

    .subtitle {
        font-size: 1rem;
    }

    .login-form {
        max-width: 300px;
    }
}
