@import url('https://fonts.googleapis.com/css2?family=Fira+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --d8-dark-gray: #434143;
    --d8-white: #F7F8F9;
    --d8-black: #0D121B;

    --d8-blue-azure: #055090;
    --d8-blue-cobait: #006CB7;
    --d8-blue-aqua: #008BCE;
    --d8-blue-sky: #00B9F0;
}

body {
    font-family: "Fira Sans", sans-serif;
    color: var(--d8-dark-gray);
    background-color: #F8FCFF;
}

main,
footer {
    margin-top: 75px;
}

.btn-cs-primary {
    color: #ffffff;
    padding: 12px 50px;
    border-radius: 100px;
    text-decoration: none;
    background: var(--d8-blue-azure);
    transition: background 0.8s cubic-bezier(0.16, 1, 0.3, 1), backdrop-filter 0.8s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-cs-outline-primary {
    color: var(--d8-blue-azure);
    padding: 12px 50px;
    border-radius: 100px;
    text-decoration: none;
    box-shadow: inset 0 0 0 1px var(--d8-blue-azure);
    transition: background 0.8s cubic-bezier(0.16, 1, 0.3, 1), backdrop-filter 0.8s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* CUSTOM INPUT FILE */
.file-upload-custom .file-box {
    width: 100%;
    display: flex;
    overflow: hidden;
    align-items: center;
}

.file-upload-custom .file-name {
    flex: 1;
    font-size: 14px;
    color: #6c757d;
    overflow: hidden;
    padding: 12px 16px;
    white-space: nowrap;
    text-overflow: ellipsis;
    background: #ffffff;
    border: 1px solid #000000;
    border-right: 0px;
    border-top-left-radius: 100px;
    border-bottom-left-radius: 100px;
}

.file-upload-custom .file-btn {
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: #3B82F6;
    padding: 12px 20px;
    border: 1px solid #3B82F6;
    border-top-right-radius: 100px;
    border-bottom-right-radius: 100px;
    background: rgba(59, 130, 246, 10%);
    transition: background 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.icon-cs {
    font-size: 12px;
}