/* screen - singupform */

#singupform {
    background-color: var(--guardsman-red);
    /*display: none;*/
    flex-direction: column;
    /*height: 70vh;*/
    /*min-height: 755px;*/
    /*min-width: 1050px;*/
    width: 50%;
    position: fixed;
    left: 50%;
    top: 50%;
    max-width: 1050px;
    transform: translate(-50%, -50%);
    visibility: hidden;
    opacity: 0;
    z-index: -1;
}

#singupform.show {
    /*display: flex;*/
    visibility: visible;
    opacity: 1;
    z-index: 200;
}

.close-button {
    align-items: flex-end;
    align-self: flex-end;
    display: flex;
    height: 33px;
    justify-content: flex-end;
    margin-right: 15px;
    margin-top: 13px;
    min-width: 33px;
    padding: 3.0px 10.5px;
}

#singupform .x {
    color: #171717;
    font-family: var(--font-family-nunito_sans);
    font-size: var(--font-size-s);
    font-weight: 400;
    letter-spacing: 0;
    line-height: 15px;
    min-height: 22px;
    min-width: 12px;
    transform: rotate(-3.00deg);
    white-space: nowrap;
}

#singupform .input {
    gap: 40px;
    justify-content: center;
    display: flex;
    flex-direction: column;
    margin: 60px 100px;
    min-height: calc(100.00% - 161px);
    /*width: 624px;*/
}

#singupform .text-input {
    background-color: var(--white);
    border-radius: 24px;
    display: flex;
    height: 104px;
    justify-content: center;
    align-items: center;
    padding: 22px;
    /*width: 624px;*/
}

#singupform .icon-feather-mail {
    align-items: flex-start;
    display: flex;
    height: 33.93px;
    justify-content: flex-end;
    margin-left: 21px;
    margin-top: -17.0px;
    min-width: 42.42px;
}

#singupform .path-container {
    height: 37px;
    margin-top: -1.5px;
    position: relative;
    width: 47px;
}

#singupform .path-36 {
    height: 37px;
    left: 1px;
    object-fit: cover;
    position: absolute;
    top: 0;
    width: 45px;
}

#singupform .path-37 {
    height: 18px;
    left: 0;
    object-fit: cover;
    position: absolute;
    top: 4px;
    width: 47px;
}

#singupform .place-holder-1 {
    align-self: center;
    background-color: transparent;
    border: 0;
    flex: 1;
    height: 43px;
    letter-spacing: 0;
    line-height: 30px;
    /*margin-bottom: -20.4px;*/
    margin-left: 27.6px;
    margin-right: 17px;
    padding: 0;
    /*width: 516px;*/
    font-size: xx-large;
}

#singupform .place-holder-1::placeholder {
    color: #76636399;
}

#singupform .confirm-password {
    align-items: flex-end;
    background-color: var(--white);
    border-radius: 24px;
    display: flex;
    height: 104px;
    margin-top: 59px;
    width: 624px;
}

#singupform .lock {
    align-items: flex-start;
    display: flex;
    height: 47px;
    justify-content: center;
    margin-bottom: -23.1px;
    margin-left: 22px;
    min-width: 42px;
}

#singupform .overlap-group {
    height: 50px;
    margin-top: -1.5px;
    position: relative;
    width: 45px;
}

#singupform .rectangle-129 {
    border: 3px solid var(--sandstone);
    border-radius: 2px;
    height: 29px;
    left: 0;
    position: absolute;
    top: 21px;
    width: 45px;
}

#singupform .path-59 {
    height: 24px;
    left: 9px;
    object-fit: cover;
    position: absolute;
    top: 0;
    width: 26px;
}

#singupform .place-holder {
    background-color: transparent;
    border: 0;
    flex: 1;
    height: 43px;
    letter-spacing: 0;
    line-height: 30px;
    margin-bottom: -20.4px;
    margin-left: 27px;
    margin-right: 17px;
    padding: 0;
    width: 516px;
}

#singupform .place-holder::placeholder {
    color: #76636399;
}

#singupform .singup-button {
    align-items: center;
    /*background-color: var(--white);*/
    background: var(--fuzzy-wuzzy);
    border-radius: 28px;
    display: flex;
    height: 105px;
    justify-content: center;
    min-width: 206px;
    padding: 24.5px 41px;
}

#singupform .title {
    cursor: pointer;
    font-size: xx-large;
    color: var(--white);
    font-family: "Nunito Sans", serif;
}

.feather {
    width: 42px;
    height: 42px;
    color: #707070;
}

.close-button .feather {
    color: white;
}
/* The snackbar - position it at the bottom and in the middle of the screen */
#snackbar {
    visibility: hidden; /* Hidden by default. Visible on click */
    min-width: 250px; /* Set a default minimum width */
    margin-left: -125px; /* Divide value of min-width by 2 */
    background-color: var(--guardsman-red); /* Black background color */
    color: #fff; /* White text color */
    text-align: center; /* Centered text */
    border-radius: 2px; /* Rounded borders */
    padding: 16px; /* Padding */
    position: fixed; /* Sit on top of the screen */
    z-index: 1; /* Add a z-index if needed */
    left: 50%; /* Center the snackbar */
    bottom: 30px; /* 30px from the bottom */
    font-family: var(--font-family-nunito_sans);
}

/* Show the snackbar when clicking on a button (class added with JavaScript) */
#snackbar.show {
    visibility: visible; /* Show the snackbar */
    /* Add animation: Take 0.5 seconds to fade in and out the snackbar.
    However, delay the fade out process for 2.5 seconds */
    -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
    animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

/* Animations to fade the snackbar in and out */
@-webkit-keyframes fadein {
    from {bottom: 0; opacity: 0;}
    to {bottom: 30px; opacity: 1;}
}

@keyframes fadein {
    from {bottom: 0; opacity: 0;}
    to {bottom: 30px; opacity: 1;}
}

@-webkit-keyframes fadeout {
    from {bottom: 30px; opacity: 1;}
    to {bottom: 0; opacity: 0;}
}

@keyframes fadeout {
    from {bottom: 30px; opacity: 1;}
    to {bottom: 0; opacity: 0;}
}
