/* Font Ubuntu */
@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@300;400;500;700&display=swap');

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

.content {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000;
}

.container {
    width: 60%;
    position: absolute;
    display: flex;
    border: 3px solid #a9a9a9;
    background-color: rgba(0, 0, 0, .7);
}

.main-content {
    width: 60%;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 1fr);
}

.container-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}

.title {
    width: 500px;
    height: 75px;
    background-image: url('img/title.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.slogan {
    color: #f2f2f2;
}

.container-input {
    grid-row: 2 / 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.container-input.hide {
    display: none;
}

.container-input > div {
    width: 50%;
    font-size: 25px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #fefefe;
}

.icon {
    color: #fefefe;
}

.input {
    margin-left: 8px;
    padding: 8px;
    border: none;
    color: #fefefe;
    background: transparent;
}

.input:focus {
    outline: none;
}

.error {
    text-align: center;
    color: #ef0020;
}

.button {
    width: 50%;
    padding: 10px 0;
    text-transform: uppercase;
    cursor: pointer;
    color: #00fe00;
    border: 1px solid #00fe00;
    background: transparent;
    animation: parpadeo 2s linear infinite;
    transition: .7s ease;
}

.button:hover {
    color: #000;
    background-color: #00fe00;
    animation: none;
}

@keyframes parpadeo  {
    0%, 41%, 45%, 47%, 49.5%, 100%  { 
        opacity: 1;
    }

    42%, 44%, 46%,48%,  50%  { 
        opacity: 0; 
    }
}

.container-data {
    padding: 30px 0;
    grid-row: 2 / 4;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.container-data.show {
    display: flex;
}

.container-data li {
    list-style: none;
    line-height: 1.3;
    font-weight: 500;
    color: #ffffff;
}

.container li b {
    margin-left: 5px;
    font-weight: 400;
    color: #00fe00;
}

.contact {
    padding-left: 10px;
    padding-bottom: 8px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.contact-title {
    margin-bottom: 5px;
    font-size: 15px;
    color: #fefefe;
}

.link {
    margin-right: 5px;
    font-size: 20px;
    color: #fefefe;
}

.container-img {
    width: 40%;
}

.img {
    width: 100%;
    height: 100%;
}



/* Responsive Design (Mobile) */
@media screen and (max-width: 375px) {
    .container {
        width: 100%;
        height: 100%;
        background-color: transparent;
    }

    .main-content {
        width: 100%;
        padding: 15px;
    }

    .title {
        width: 300px;
        height: 50px;
    }

    .container-input > div {
        width: 60%;
    }
    
    .button {
        width: 60%;
        font-size: 13px;
    }

    .container-data {
        padding: 0;
        justify-content: center;
        gap: 30px;
    }

    .container-data li {
        font-size: 13px;
    }

    .contact {
        padding: 0;
    }
    
    .container-img {
        display: none;
    }
}