/* ATCKR Login Page — styled to match contact.css */


/* RESET */
article, body, div, footer, header, main, h1, h2, h3, h4, nav, img, ul, li, p {
    border: 0;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Share Tech Mono", monospace;
    line-height: 1.6;
    color: #00FF00;
    background-color: #0A0A0A;
}


/* HEADER */
header {
    background: #0a0a0a;
    border-bottom: 2px solid #526d3a;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 14px 28px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    animation: fadeDown 1s ease forwards;
}

.logo {
    height: 150px;
    grid-column: 1;
    justify-self: left;
}

nav {
    grid-column: 3;
    justify-self: end;
}

nav ul {
    display: flex;
    gap: 35px;
    list-style: none;
    margin: 0;
    padding: 0;
}

nav li {
    margin: 0;
}

nav a {
    text-decoration: none;
    color: #fff;
    font-family: "Share Tech Mono", monospace;
}

nav a:hover {
    color: #52d63a;
}


/* MAIN */
main {
    background-image: url("gif.gif");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
}


/* PAGE TITLE — matches contact page */
.page-title {
    text-align: center;
    margin-top: 40px;
    font-size: 40px;
    color: white;
}


/* FORM SECTION — matches contact.css .contact-section */
.contact-section {
    margin-top: 40px;
    text-align: center;
    color: white;
}

.contact-section h2 {
    margin-bottom: 10px;
}

/* FORM — matches contact.css .contact-form */
.contact-form {
    max-width: 500px;
    margin: auto;
    display: flex;
    flex-direction: column;
}

.contact-form label {
    margin-top: 15px;
    text-align: left;
}

.contact-form input {
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #52d63a;
    background: black;
    color: white;
    font-family: "Share Tech Mono", monospace;
}

.contact-form input:focus {
    outline: none;
    box-shadow: 0 0 8px rgba(82, 214, 58, 0.4);
}

.contact-form button {
    margin-top: 20px;
    padding: 14px;
    background: #52d63a;
    border: none;
    font-size: 16px;
    font-family: "Share Tech Mono", monospace;
    color: white;
    cursor: pointer;
}

.contact-form button:hover {
    box-shadow: 0 0 10px #52d63a;
}


/* SIGN UP LINK */
.forgot {
    text-align: center;
    margin-top: 16px;
    color: white;
}

.forgot a {
    color: #52d63a;
    text-decoration: none;
}

.forgot a:hover {
    text-decoration: underline;
}


/* FOOTER — matches contact.css */
footer {
    margin-top: 80px;
    background: #111;
    padding: 25px;
    text-align: center;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    margin-top: 20px;
    border-top: 1px solid #555;
    color: lightgreen;
}

.contacts a {
    color: #52d63a;
    text-decoration: none;
}

.contacts a:hover {
    text-decoration: underline;
}


/* SKIP NAV */
.skip-navigation {
    position: absolute;
    left: -10000px;
}


/* ANIMATIONS */
@keyframes fadeDown {
    from { opacity: 0; transform: translateY(-40px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(40px); }
    to   { opacity: 1; transform: translateY(0); }
}


/* PRINT */
@media print {
    .container, h1, h2, p {
        color: black;
        background-color: lightgrey;
    }
    nav { display: none; }
}