@import url('./global.css');

main {
    z-index: 1;
    width: 100vw;
    height: calc(100vh - 125px);
    margin-top: 60px;
    padding: 0 20px;

    display: flex;
    flex-direction: column;
    background-color: #eefaeb;

    text-align: center;

    h1 {
        margin-top: 18px;
    }

    span {
        color: #438d34;
    }

    .inputs {
        display: flex;
        flex-direction: column;
        align-items: start;
        padding: 20px 20px;
        background-color: #cff1c8;
        margin-top: 40px;
        border-radius: 6px;
        text-align: start;

        input,
        textarea {
            width: 100%;
            padding: 20px 5px;
            border-radius: 6px;
            border: 1px solid #000;
            font-size: 1.2rem;
            margin-bottom: 20px;
    
        }

        label {
            font-size: .9rem;
            color: #363636;
        }

        .label-msg {
            margin-top: 20px;
        }

        button{
            width: 100%;
            margin-top: 10px;
            padding: 12px;
            border-radius: 6px;
            border: none;
            background-color: #438d34;
            color: #fff;
            font-size: 1.2rem;

            &:hover{
                background-color: #347926;
            }

            &.disable {
                pointer-events: none;
                background-color: #5e5e5e;
            }
        }

        &.disable {
            display: none;
        }
    }

    .result {
        display: none;
        width: 100%;
        max-width: 800px;
        flex-direction: column;
        align-items: start;
        padding: 20px 20px;
        background-color: #cff1c8;
        margin-top: 40px;
        border-radius: 6px;


        .link-number{
            width: 100%;
            height: 50px;
            background-color: #fff;
            border-radius: 6px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            padding:30px 20px;
            display: flex;
            align-items: center;

        }

        button{
            width: 100%;
            margin-top: 30px;
            padding: 22px;
            border-radius: 6px;
            border: none;
            background-color: #438d34;
            color: #fff;
            font-size: 1.1rem;

        }

        button:hover{
            background-color: #347926;
        }

        a {
            margin-top: 10px;
            width: 100%;
            margin-top: 17px;
            padding: 12px;
            border-radius: 6px;
            border: none;
            background-color: #1b1b1b;
            color: #fff;
        }

        a:hover {
            background-color: #363636;
        }

        &.active {
            display: flex;
        }
    }
}

 footer {
    width: 100%;
    display: flex;
    text-align: center;
    padding: 20px;
    justify-content: center;
} 


@media (min-width: 769px) {

    header {

        .nav-list {
            display: flex;
            flex-direction: row;
            position: relative;
            top: 0;
            height: auto;
            width: 100%;
            background-color: transparent;
        }

        a {
            font-size: 1rem;
            color: #000;
        }

        a:hover {
            color: #1A8D44;
        }
        .btn-mobile {
            display: none;
        }
    }

    main {
        width: 100vw;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

