main {
    font-family: var(--fa);
    h1 {
        text-transform: uppercase;
        text-align: center;
        font-size: 30px;
        color: var(--mc);
    }
    .message-banner {
        transform: translateY(-100%);
        opacity: 0;
        transition: transform 0.5s ease-out, opacity 0.5s ease-out;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
        padding: 15px;
        text-align: center;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
        font-size: 16px;
        p {
            margin: 0;
        }
        &.error {
            background-color: #fdd;
            color: #a00;
        }
        &.success {
            background: var(--vc);
            color: var(--lc);
        }
        &.show {
            transform: translateY(0);
            opacity: 1;
        }
        &.hide {
            transform: translateY(-100%);
            opacity: 0;
        }
    }
    .nb-competitors {
        width: 60%;
        margin: 0 auto;
        padding: 7.5px 0;
        text-transform: uppercase;
        color: #008000;
        background:rgba(0, 160, 0, 0.1);
        text-align: center;
        font-weight: bold;
    }
    .input-group {
        position: relative;
        margin: 20px auto;
        width: 90%;
        input {
            width: 100%;
            padding: 10px 15px;
            font-size: 16px;
            border: none;
            outline: 1px solid var(--mc);
            background: transparent;
            color: var(--mc);
            &:focus {
                border-bottom: 1.5px solid var(--mc);
                transition: 0.1s;
            }
        }
        label {
            position: absolute;
            top: 7.5px;
            left: 7.5px;
            color: var(--mc);
            background: white;
            padding: 0 4px;
            transition: 0.2s ease;
            pointer-events: none;
        }
        input:focus+label,
        input:not(:placeholder-shown)+label {
            top: -10px;
            left: 10px;
            font-size: 12px;
            color: var(--mc);
        }  
    }
    table {
        width: 90%;
        margin: 0 auto;
        border-collapse: collapse;
        text-align: center;
        thead tr {
            background: var(--mc);
            color: var(--lc);
            text-transform: uppercase;
        }
        tbody {
            color: var(--mc);
            tr {
                background: rgb(182, 30, 30, 0.075);
                &:nth-child(odd) {
                    background: var(--lc);
                }
                td {
                    padding: 5px 0;
                    &:nth-child(1) {
                        width: 4%;
                        img {
                            vertical-align: middle;
                        }
                    }
                    &:nth-child(2) {
                        width: 17.5%;
                        text-transform: uppercase;
                        font-weight: bold;
                    }
                    &:nth-child(3) {
                        width: 25%;
                    }
                    &:nth-child(4) {
                        width: 5%;
                    }
                    &:nth-child(5) {
                        width: 5%;
                    }
                    &:nth-child(6) {
                        width: 12%;
                    }
                    &:nth-child(7) {
                        width: 20%;
                    }
                    &:nth-last-child(1) {
                        width: 1.5%;
                    }

                }
            }
        }
    }        
}