body {
    margin: 0;
    min-height: 100vh;
    background-color: #921e33;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0px;
    box-sizing: border-box;
    overflow-x: hidden;
}

h1 {
    font-family: franklin-gothic-urw, sans-serif;
}

.container {
    width: 100%;
    max-width: 420px;
    background: white;
    padding: 20px;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    box-sizing: border-box;
}

.header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.logo {
    transform: translateY(-20%);
    height: 70px;
}

.accent-line {
    width: 300px;
    height: 4px;
    background-color: #f3d03e;
    border: none;
    left: 10px;
}

form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

input {
    width: 90%;
    border: none;
    border-bottom: 1px solid black;
    padding: 10px;
    font-size: 16px;
}

.input-section {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.button-section {
    display: flex;
    justify-content: flex-end;
}

button {
    background-color: #f3d03e;
    font-family: sans-serif;
    font-weight: bold;
    color: black;
    border: none;
    padding: 10px 25px;
    cursor: pointer;
}

button:hover {
    background-color: #921e33;
    color: black;
}

input:focus {
    outline: none;
    border-bottom: 2px solid #921e33;
}

.info-box{
    background: #eee;
    padding: 30px;
    font-size: 16px;
    text-align: center;
}

.back-section {
    margin-top: 20px;
}

.back-button {
    text-decoration: none;
    color: #921e33;
    font-size: 14px;
}

.back-button:hover {
    text-decoration: underline;
}


/*  fixes for viewing on mobile devices   */
@media (max-width: 900px) {

    body {
        align-items: flex-start;
        padding: 15px 0;
    }

    .container {
        width: 95%;
        min-height: auto;
        padding: 15px;
        margin 20px auto;
    }

    .back-section {
        margin-top: 20px;
    }

    .header {
        flex-direction: column;
        text-align: center;
    }

    .logo {
        height: 60px;
        transform: none;
    }

    input {
        width: 100%;
    }

    .button-section {
        justify-content: center;
    }

    button {
        width: 100%;
    }

    .accent-line {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
}