/* Resetting */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

html,
body {
    height: 100%;
    overflow: hidden;
}

body {
    background: #20d0ce;
    display: flex;
    justify-content: center;
    align-items: center;
}

.wrapper {
    max-width: 350px;
    width: 100%;
    padding: 40px 30px;
    background-color: #ecfffd;
    border-radius: 20px;
    text-align: center;
}

.logo img {
    width: 100%;
    height: auto;
    object-fit: contain;
    margin-bottom: 20px;
}

.text-center {
    margin-top: 20px;
    font-size: 1.5rem;
    font-weight: 700;
    color: #20d0ce;
    padding: 10px 0;
}

.btn {
    width: 100%;
    height: 50px;
    background-color: #20d0ce;
    color: #fff;
    border-radius: 25px;
    box-shadow: 3px 3px 3px #b1b1b1, -3px -3px 3px #fff;
    letter-spacing: 1.3px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 15px;
    margin-bottom: 15px;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #1daaa5;
}

.btn i {
    margin-right: 8px;
}

@media (max-width: 380px) {
    .wrapper {
        padding: 40px 15px;
    }
}
