@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500&display=swap');

* {
    margin: 0;
    padding: 0;;
    box-sizing: border-box;
}

body {
    font-family: "Poppins", sans-serif;
    margin: 0px auto;
    padding: 8px;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo img {
    width: 150px;
    height: 150px;
    margin-bottom: -40px;
}

.landing-page {
    width: 100%;
}

h1 {
    font-size: 28px;
    margin-bottom: 15px;
    text-align: center;
    color: #00a859;
}

h2 {
    margin-bottom: 4px;
    color: #ed3237;
    font-size: 18px;
}

h3 {
    font-size: 14px;
    margin-bottom: 15px;
    text-align: center;
}

.strike {
    text-decoration: line-through;
}
.btn {
    display: inline-block;
    padding: 8px 10px;
    border: none;
    margin-bottom: 13px;
    width: 100%;
    text-decoration: none;
    color: white;
    text-align: center;
    box-shadow: grey;
    border-radius: 10px;
    margin: 10px;
    max-width: 94%;
    font-size: 14px;
}
    
.whatsapp {
    background-color: #25D366;
    color: black;
}
.whatsapp-live {
    background-color: #075E54;
}
.telegram {
    background-color: #24A1DE;
}

form {
    display: flex;
    flex-direction: column;
}

form input {
    height: 30px;
    margin-bottom: 10px;
}
form button {
    margin-top: 10px;
    background-color: black;
}

form button:hover {
    cursor: pointer;
}

.fa-brands {
    width: 15px;
    height: 15px;
}

.green {
    color: #00a859;
}

.form-container {
    margin: 15px 10px;
    border: 3px solid rgb(160, 157, 157);
    border-radius: 5px;
    padding: 10px;
    box-shadow: 0px 1px 3px rgb(44, 44, 44);
}
.form-container label {
    color: rgb(109, 109, 109);
    font-weight: 700;
    margin-bottom: 10px;
}
.form-container input {
    padding: 10px;
    font-size: 16px;
    border: grey;
    box-shadow: 1px 2px 3px grey;
    border-radius: 7px;
    border: thin solid grey;
    height: 40px;
}
.form-container .btn {
    background-color: #ed3237;
    font-size: 16px;
}
.show-gplink{
    display: flex;
    justify-content: center;
}
.show-glink {
    margin: -6px 7px 12px;
    display: block;
    color: blue;
    text-decoration: underline;
    max-width: 76vw;
    overflow: hidden;
    text-overflow: ellipsis;
}


