@font-face {
    font-family: 'Azeitona-Prime';
    src: url("../font/papertigersrf-bold.ttf");
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-image: url("../img/background.png");
    background-color: #e459cf;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 100vh;
    min-width: 100vw;
    display: grid;
    justify-content: center;
    font-family: Azeitona-Prime, sans-serif;
}

.azeitona-form-mail {
    display: grid;
    height: 100%;
    align-content: center;
}

header {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 15px auto 30px;
}

.logo{
    max-width: 100%;
    width: 150px;
}

main {
    width: 520px;
    height: fit-content;
    background-color: white;
    border-radius: 30px;
    padding: 20px 40px 36px;
}
    main form {
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    main .invalid-feedback {
        font-size: 1.875em;
    }

    main .label {
        color: #5A006C;
        font-size: 60px;
        font-style: normal;
        font-weight: 400;
        line-height: 1;
        margin: 0;
    }


    main .form-control {
        background-color: #5C006D;
        height: 60px;
        color: white!important;
        line-height: 1px;
        font-size: 40px;
        border-radius: 8px;
    }

        main .form-control:focus {
            color: white;
            background-color: #970FB0;
            border-color: #5C006D;
            outline: 0;
            box-shadow: 0 0 0 0.25rem rgba(13,110,253,.25);
        }

    main .btn {
        width: 180px;
        height: 50px;
        background-color: #EC5FD6;
        color: #FFF;
        font-size: 55px;
        font-weight: 400;
        line-height: normal;
        margin: 20px auto 0;
        padding: 0;
        border-radius: 30px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    main .btn:hover {
        background-color: #DE18BF;
        color: #FFF;
    }

        main .btn:disabled {
            opacity: 0.5;
        }

footer{
    text-align: center;
    margin-top: 30px;
}

    footer a {
        color: #5A006C;
        font-size: 70px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        text-decoration: none;
    }

    footer a:hover {
        color: #7D1192;
    }

div:where(.swal2-container) h2:where(.swal2-title) {
    font-size: 2.5rem!important;
}

div:where(.swal2-container) .swal2-html-container {
    font-size: 2rem!important;
}

div:where(.swal2-container) button:where(.swal2-styled).swal2-confirm {
    font-size: 1.5rem!important;
}

.error {
    font-size: 1.3rem;
    color: #ef2727;
}

@media (max-width: 700px) {
    body {
        background-position: center;
        padding: 10px;
    }

    header {
        margin: 20px auto;
    }

    .logo {
        width: 90px;
    }

    main {
        width: 100%;
        min-width: 350px;
        padding: 30px;
    }

        main .label {
            font-size: 32px;
        }


        main .form-control {
            background-color: #5C006D;
            height: 50px;
            font-size: 40px;
            font-weight: 400;
        }

        main .btn {
            width: 160px;
            height: 35px;
            font-size: 28px;
        }

    footer a {
        font-size: 36px;
    }
}

@media (max-width: 400px) {
   
    main {
        width: 100%;
        min-width: 280px;
        padding: 30px;
    }

        main .form-control {
            background-color: #5C006D;
            height: 50px;
            font-size: 30px;
            font-weight: 400;
        }

        main .btn {
            width: 160px;
            height: 35px;
            font-size: 28px;
        }

    footer a {
        font-size: 36px;
    }
}