﻿header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: white;
    color: black;
}

nav-items a {
    color: black;
}

.hamburger span {
    background: black;
}

.nav-links a {
    color: black;
}

.btn {
    width: 100%;
    text-transform: capitalize;
    letter-spacing: -4%;
}

    .btn:hover {
        background: black;
        border-color: black;
        color: white;
    }

.auth-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding-block: 48px;
    max-width: 900px;
    margin: 0 auto;
}

.auth-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: center;
    align-items: center;
}

    .auth-content p {
        font-size: clamp(14px, 4vw, 18px);
        font-family: "Newsreader", serif;
        color: #676F7E;
        line-height: 1.6;
        text-wrap: balance;
    }

.form-container {
    background: #F4F7FA;
    padding: 32px;
    border-radius: 12px;
    border: 1px solid #E3E5E8;
    width: 100%;
}

    .form-container form {
        display: flex;
        flex-direction: column;
        gap: 24px;
        width: 100%;
    }


.form-group {
    display: flex;
    flex-direction: column;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

label {
    font-size: 14px;
    color: #111827;
    margin-bottom: 8px;
    display: block;
    font-family: "Geist Mono", monospace;
    text-transform: uppercase;
}

/* Input Styles */
input[type="text"],
input[type="email"] {
    width: 100%;
    padding: 14px 16px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    color: #333;
    transition: all 0.3s ease;
    appearance: none;
}

    input[type="text"]:focus,
    input[type="email"]:focus {
        outline: none;
        border-color: #4a90e2;
        box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
    }

    input[type="text"]::placeholder,
    input[type="email"]::placeholder {
        color: #999;
        font-size: 14px;
        font-family: "Newsreader", serif;
    }

.form-footer {
    color: #676F7E;
    font-family: "Newsreader", serif;
    font-size: 14px;
    text-align: center;
}

    .form-footer a {
        color: #4a90e2;
        text-decoration: none;
        font-weight: 500;
    }
