/* Import Google Font - Poppins */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

/* custom scroll bar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background-image: linear-gradient(to right top, #211011, #391914, #4f2511, #5e3605);
}

::-webkit-scrollbar-thumb {
    background: #753517;
}

::-webkit-scrollbar-thumb:hover {
    background: #753517;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #2C3E50;
    /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #4CA1AF, #2C3E50);
    /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #4CA1AF, #2C3E50);
    /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */


    text-align: center;
    height: auto;
    color: #fff;
    background-color: #0c0c0c;
}

.link-container {
    padding-top: 1rem;
    padding-bottom: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 65vh;
    height: auto;
}

.welcome-container {
    padding-top: 1rem;
    padding-bottom: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 35vh;
    height: auto;
    background-color: rgb(0, 0, 0, 0.85);
    box-shadow: 0px 0px 16px 2px rgba(0, 145, 202, 0.6);
}

.box {
    max-width: 700px;
    width: 100%;
    border-radius: 10px;
    padding-left: 2rem;
    padding-right: 2rem;
}

.box h1 {
    font-size: 1.85rem
}

#c-btn button {
    max-width: 140px;
    width: 100%;
    height: 45px;
    border: none;
    outline: none;
    font-size: 18px;
    border-radius: 7px;
}

#c-btn button {
    color: #fff;
    cursor: pointer;
    background: #252525;
    transition: 0.3s ease;
}

#c-btn button:hover {
    background: #004c9c;
}

.content button {
    max-width: 450px;
    width: 100%;
    height: 45px;
    border: none;
    outline: none;
    font-size: 18px;
    border-radius: 7px;
}

.content button {
    color: #fff;
    cursor: pointer;
    background: #1b1b1b;
    transition: 0.3s ease;
}

.content button:hover {
    background: #004c9c;
}

/* ---------- */

.first {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 0vh;
    margin-bottom: 1rem;
}

.wrapper {
    width: 500px;
    background: #003063;
    border-radius: 10px;
    padding: 0.5rem;
    box-shadow: 0px 0px 30px 5px rgba(20, 20, 20, 0.6);
}

.wrapper header {
    display: flex;
    font-size: 21px;
    font-weight: 500;
    color: #43AFFC;
    padding: 16px 15px;
    align-items: center;
    border-bottom: 1px solid #ccc;
}

header i {
    font-size: 0em;
    cursor: pointer;
    margin-right: 8px;
}

.wrapper.active header i {
    margin-left: 5px;
    font-size: 30px;
}

.wrapper .input-part {
    margin: 20px 25px 30px;
}

.wrapper.active .input-part {
    display: none;
}

.input-part .info-txt {
    display: none;
    font-size: 17px;
    text-align: center;
    padding: 12px 10px;
    border-radius: 7px;
    margin-bottom: 15px;
}

.input-part .info-txt.error {
    color: #721c24;
    display: block;
    background: #ccc;
    border: 1px solid #ccc;
}

.input-part .info-txt.pending {
    color: #0c5460;
    display: block;
    background: #ccc;
    border: 1px solid #ccc;
}

.input-part :where(input, button) {
    width: 100%;
    height: 55px;
    border: none;
    outline: none;
    font-size: 17px;
    border-radius: 7px;
}

.input-part input {
    text-align: center;
    padding: 0 15px;
    color: #fff;
    background-color: rgba(0, 61, 126, 0.4);
    border: 1px solid #ccc;
}

.input-part input:is(:focus) {
    border: 2px solid #ccc;
}

.input-part input::placeholder {
    color: #bfbfbf;
}

#shortlink {
    display: none;
}

.input-part .separator {
    height: 1px;
    width: 100%;
    margin: 15px 0;
    background: #ccc;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.separator::before {
    color: #b3b3b3;
    font-size: 19px;
    padding: 0 15px;
    background: #fff;
}

.input-part button {
    color: #fff;
    cursor: pointer;
    background: #0056b3;
    transition: 0.3s ease;
}

.input-part button:hover {
    background: #006ce0;
}



@media (max-width:768px) {

    .link-container .box .first .wrapper .input-part .custom-button{
        font-size: 15px;
    }

    .link-container .box .first .wrapper .input-part .custom-button button{
        font-size: 15px;
    }

}