/* —————————————————  PASSWORD PAGE STUFF BELOW ————————————————— */
@import url('https://fonts.googleapis.com/css2?family=Hanken+Grotesk:ital,wght@0,100..900;1,100..900&family=Instrument+Serif:ital@0;1&display=swap');

body {
    font-family: "Hanken Grotesk", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    font-size:clamp(18px, 1.5vw, 22px);
}

h2 {
    font-family: "Instrument Serif", serif;
    font-size: 2em;
    line-height: 30%;
    font-weight: 400;
    font-style: italic;
    -webkit-text-stroke: .02em;
    letter-spacing: .5px !important;
    margin-bottom: 5px !important;
    padding-bottom: .5em;

}

.password-page{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-image: url('https://www.example.com/path-to-your-image.jpg');
    background-size: cover; /* Make the image cover the entire viewport */
    background-position: center; /* Center the background image */
    background-attachment: fixed;
}

.full-bleed-background{
    background-image: url('orange-paper.png');
    background-size: cover; /* Make the image cover the entire viewport */
    background-position: center; /* Center the background image */
    background-attachment: fixed; /* Make the background image fixed when scrolling */
    width: 100%; /* Make sure the div spans the full width */
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}


.box {
    width: 40%;
    background: #ffffff;
    padding: 20px;
    border: 3px solid #FC6950;
    border-radius: 20px;

    /* box-shadow: 0 2px 10px rgba(0,0,0,0.1); */
    text-align: center;
}

@media (max-width: 500px) {
    .box {
        width: 100%;
        margin: 16px;
    }
}

.no-padding{
    padding: 0;
    margin:0;
}

input{
    margin-top: 10px;
}

input[type="password"] {
    font-family: "Hanken Grotesk", sans-serif;
    padding: 10px;
    width: 40%;
    margin-bottom: 20px;
    border-radius: 4px;
    border: 1px solid #FC6950;
}
input[type="submit"] {
    font-family: "Hanken Grotesk", sans-serif;
    font-size: 16px; /* Font size */
    font-weight: 500; /* Font size */
    padding: 10px 20px;
    cursor: pointer;
    background-color: #FC6950;
    color: white; /* White text */
    text-align: center; /* Center text */
    text-decoration: none; /* Remove underline */
    display: inline-block; /* Make the button inline */
    margin: 4px 2px; /* Space between buttons */
    cursor: pointer; /* Pointer cursor on hover */
    border: none; /* No border */
    border-radius: 10px; /* Rounded corners */
}

input:focus {
    background-color: #EFDAE5;
    border: 1px solid #C67FA5;
    outline: none; /* Optional: Removes the default outline */
}

.error {
    color: #FC6950;
    margin-top: 10px;
}