input[type=text], input[type=password], input[type=email] {
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid rgb(37, 32, 43);
    box-sizing: border-box;
    background-color: #c1cbfd;
}

/* Set a style for all buttons */
button {
    background-color: rgba(133, 115, 199, 100);
    color:#c1cbfd;
    padding: 14px 20px;
    margin: 8px 0;
    border: none;
    font-weight:900;
    cursor: pointer;
    width: 100%;
}

button:hover {
     opacity: 0.8; 
}

/* Extra styles for the cancel button */
.cancelbtn {
    width: auto;
    padding: 10px 18px;
}

#checked, .signUp, label{
    color:#c1cbfd;
}

.signUp {
    float:right;
    padding-right: 4px;
}

.container {
    padding: 16px;
}

#container1 {
    background-color: rgb(88, 90, 99);
}

#container2 {
    background-color: rgb(61, 60, 70);
}

.modal-container-primary {
    background-color: rgb(88, 90, 99);
}

.modal-container-secondary {
    background-color: rgb(61, 60, 70);
}

span.psw {
    float: right;
    padding-top: 16px;
}

.modal {
    display: none;
    position: fixed; 
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4);
    padding-top: 60px;
}

/* Modal Content/Box */
.modal-content {
    background-color: rgb(88, 90, 99);
    margin: 5% auto 15% auto; /* 5% from the top, 15% from the bottom and centered */
    border: 1px solid #c1cbfd; 
    width: 60%; /* Could be more or less, depending on screen size */
}

.close {
    position: absolute;
    right: 25px;
    top: 0;
    color: #000;
    font-size: 35px;
    font-weight: bold;
}

.close:hover, .close:focus {
    color:rgb(37, 32, 43);
    cursor: pointer;
}

@keyframes animatezoom {
    from {transform: scale(0)} 
    to {transform: scale(1)}
}

.animate {
    animation: animatezoom 0.3s
}

@media screen and (max-width: 992px) {
    .modal-content{
        width:80%;
    }
}

@media screen and (max-width: 300px) {
    span.psw {
        display: block;
        float: none;
    }
    .cancelbtn {
        width: 100%;
    }
}

#toast {
    position: fixed;
    top: 1.5rem;
    left: 50%;
    background-color: rgba(37, 32, 43, 0.95);
    color: #c1cbfd;
    padding: 12px 18px;
    border: 1px solid rgba(150, 136, 201, 0.9);
    border-radius: 6px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.45);
    opacity: 0;
    transform: translate(-50%, -10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 9999;
    max-width: min(360px, 90vw);
    pointer-events: none;
}

#toast.toast-show {
    opacity: 1;
    transform: translate(-50%, 0);
}