body {
    font-family: 'Poppins', sans-serif;
}

input {
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

input[type="checkbox"] {
    appearance: none;
    background: url(./assets/ch-box-1-norm.svg) no-repeat 100%;
    border: none !important;
}

input[type="checkbox"]:hover {
    appearance: none;
    background: url(./assets/ch-box-1-hover.svg) no-repeat 100%;
}

input[type="checkbox"]:checked {
    appearance: none;
    background: url(./assets/ch-box-1-checked.svg) no-repeat 100%;
}

input[type="checkbox"]:disabled {
    appearance: none;
    background: url(./assets/ch-box-1-disabled.svg) no-repeat 100%;
}

input[type="checkbox"]:active {
    appearance: none;
    background: url(./assets/ch-box-1-pressed.svg) no-repeat 100%;
}


input:not([type="checkbox"]) {
    width: 80%;
    border-radius: 16px;
    border: 2px solid #e2e1ea;
    padding: 5px 10px;
    margin: 5px auto;
}

input:not([type="checkbox"]):focus {
    border: 2px solid #b6b5be;
    outline: none;
}

a {
    color: var(--custom-button-background);
    text-decoration-color: var(--custom-button-background);
}

.button-default {
    font-family: "Work Sans", sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.7em;
    border-radius: 15px;
    text-align: center;
    cursor: pointer;
    width: 80%;
    margin: 10px auto;
    padding: 10px 26px;
    border: none;
    background: linear-gradient(87.67deg,#956AC1 0%,#773EB1 100%);
    color: white;
    box-shadow: -5px 9px 30px 1px rgb(119 62 177 / 40%);
}
.button-default:hover {
    opacity: .7;
}
.button-default, .button-default:hover {
    transition: all .4s ease-in-out;
}

.inputs-container {
    display: flex;
    flex-direction: column;
    background: #f3f8fb;
    border-radius: 16px;
    padding: 16px
}

.box-title {
    display: block;
    margin: 10px auto;
    font-weight: 400;
    line-height: 1em;
    font-size: 22px;
    text-align: center;
}

.agree-checkbox {
    width: 80%;
    margin: 5px auto;
    font-size: 0.8rem;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.agree-checkbox input {
    width: 17px;
    height: 17px;
    padding: 1px;
    margin: unset;
}

.agree-checkbox label {
    margin-left: 5px;
    color: var(--text-default);
}

#error-message, #success-message {
    text-align: center;
    font-weight: 600;
    font-size: .9rem;
}

#error-message {
    color: #9b3c3c;
}

#success-message {
    color: #4fb74f;
}

#main-inputs, #success-inputs {
    flex-direction: column;
    width: 100%;
}

#main-inputs {
    display: flex;
}

.share-link-container {
    position: relative;
    margin: auto;
    width: 80%;
}

.share-link-container input {
    width: 100%;
}

#copy-clipboard {
    position: absolute;
    top: 28%;
    right: 10px;
    cursor: pointer;
}

.password-text {
    font-family: "text-security";
    /* Use -webkit-text-security if the browser supports it */
    -webkit-text-security: disc;
}

.viewing-password {
    /* font-family: 'Poppins', sans-serif; */
    font-family: "Work Sans", sans-serif;
}

#password-container {
    width: 80%;
    position: relative;
    margin: auto;
}

#password-input {
    width: 100%;
    padding-right: 50px;
}

#password-input::placeholder {
    /* font-family: 'Poppins', sans-serif; */
    font-family: "Work Sans", sans-serif;
}

#password-view-control {
    position: absolute;
    right: 16px;
    top: 12%
}