
.hidden-login-wrapper {
    display: none;
}

#accounts-nav {
    display: flex;
    flex-wrap: wrap;
}

p {
    white-space: wrap;
}

#home {
    font-size: 18px;
}

@media screen and (max-width: 600px) {
    
    .detail-wrapper-phone {
        display: flex;
        justify-content: center;
    }

    #home {
        display: block;
    }
    .nav-left {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        width: 100%;
    }
    #page-title {
        font-size: 32px;
        min-width: fit-content;
        display: flex;
        gap: 10%;
        align-items: center;
        justify-content: center;
        box-sizing: border-box;
        flex-wrap: nowrap;
        padding: 10px 0;
        width: 100%;

    }
    nav {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    /* #login-wrapper {
        display: none;
    } */
    .submit-button-wrapper {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
    }
    .register-button {
        font-size: 24px;
    }
    .item.escort-phone {
        display: none;
    }
    .escorts-grid-headings {
        display: grid;
        grid-template-columns: repeat(3, minmax(25vw, 1fr));
    }
    .escorts-grid-contents {
        display: grid;
        grid-template-columns: repeat(3, minmax(25vw, 1fr));
    }

    p {
        font-size: 14px;
    }
}

@media screen and (max-width: 890px) {
    nav#accounts-nav {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
    }
}

@media screen and (max-width: 750px) {
    .nav-left, nav {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
    }
}

@media screen and (max-width: 450px) {

    .form-wrapper {
        width: 100%;
    }

    form.registration-form {
        width: 100%;
    }

    input.form-input {
        width: 90%;
        min-width: 298px;
    }
    #escort-title.registration-title {
        width: 100%;
    }
    label {
        width: 100%;
    }
    #registration-buttons {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 20px;
    }

    .registration-button-wrapper {
        width: 100%;
        /* max-width: 250px; */
    }

    button.red-button {
        width: 100%;
        /* box-sizing: border-box; */
        min-width: 200px;
    }
    a.red-border-button {
        width: 100%;
        box-sizing: border-box;
        min-width: none;
    }
    .negative-margin {
        margin-right: -28px;
    }

    #password-group {
        justify-content: flex-start;
    }
}