a {
    text-decoration: none;
}

.one-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: transparent;
    border-radius: 10px;
    color: white;
    border: 3px solid #fff3;
    padding: 12.5px 30px;
    font-size: 1rem;
    font-family: var(--primary-text-font);
    font-weight: 500;
    transition: transform .3s ease,
                background-color .3s ease,
                color .3s ease,
                border-color .3s ease;
}

.one-btn--medium {
    font-size: 1.2rem;
    padding: 15px 30px;
}

.one-btn--large {
    font-size: 1.4rem;
    padding: 15px 35px;
}

.one-btn--primary {
    background-color: var(--primary-color);
}

.one-btn--gradient {
    background-image: linear-gradient(135deg, var(--primary-color) 20%, var(--secondary-color) 80%);
    background-size: 110% 110%;
    background-position: center;
}

.one-btn--outlined {
    border-color: var(--primary-color);
    color: var(--primary-color);
    font-weight: 600;
}

.one-btn--rounded {
    border-radius: 100px;
}

.one-btn--primary:hover,
.one-btn--gradient:hover { 
    border-color: var(--secondary-color);
}

.one-btn--outlined:hover {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--secondary-color);
}

.one-btn:hover {
    transform: translateY(-10px);
}

.one-btn__icon {
    font-size: 1.5rem;
}


/* Check Box */
.one-check-box {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 25px;
    aspect-ratio: 1;
    border-radius: 4px;
    border: 1px solid #aaa;
}

.one-check-box__input {
    appearance: unset;
    width: 100%; height: 100%;
}

.one-check-box:has(.one-check-box__input:checked) {
    background-color: var(--primary-color);
}

.one-check-box > i {
    position: absolute;
    display: none;
    pointer-events: none;
    color: white;
    font-size: .9rem;
}

.one-check-box__input:checked + i {
    display: block;
}


/* Text Box */
.custom-input-style,
.custom-select-style,
.custom-textarea-style {
    font-family: Poppins;
    height: 3rem;
    font-size: 1rem;
    padding-left: 15px;
    border-radius: 10px;
    border: 1.5px #bcbcbc solid;
    background-color: transparent;
    transition: border-color .25s ease,
                box-shadow .25s ease,
                color .3s ease;
}
.custom-select-style {
    appearance: none;
}
.custom-textarea-style {
    padding: 10px 15px;
}
.custom-input-style:focus,
.custom-select-style:focus,
.custom-textarea-style:focus {
    outline-style: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3.5px rgba(var(--primary-color-values), .4);
}


/* Custom Animated Placeholder */
.input-element-container {
    display: flex;
    flex-direction: column;
    position: relative;
}

.custom-input-style + label,
.custom-textarea-style + label,
.custom-select-style + label {
    padding: 0 7.5px;
    font-family: Poppins;
    font-size: 1rem;
    color: #bcbcbc;
    position: absolute;
    pointer-events: none;
    transition: top .25s ease,
                transform .25s ease,
                font-size .25s ease,
                color .25s ease,
                background-color .3s ease;
}
.custom-input-style + label {
    top: 50%; left: 15px;
    transform: translateY(-50%);
}
.custom-textarea-style + label {
    top: 10px; left: 15px;
}
.custom-input-style:focus + label,
.custom-input-style:not(:placeholder-shown) + label,

.custom-textarea-style:focus + label,
.custom-textarea-style:not(:placeholder-shown) + label,

.custom-select-style + label {
    top: 0;
    transform: translateY(-50%);
    background-color: var(--page-background-lighter);
    color: var(--primary-color);
    font-size: .8rem;
    left: 15px;
}

option {
    color: black;
}


/* Form Warning Text */
.form-warn-text {
    margin: 0;
    margin-top: 10px;
    margin-left: 10px;
    font-family: Poppins;
    color:rgba(var(--primary-color-values), .7);
    font-size: .85rem;
}