/* IMPORTANTE: The @import rule must precede all other rules (except @charset). */
/* @import url('/gpda_gweb/login/login.css');
@import url('/gpda_gweb/login/login-form/login-form.css'); */

#wrapper {
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: fit-content;
}

#main-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.main-content-size {
    width: 100%;
    padding: 2rem;
}

#form-container {
    width: 100%;
    height: fit-content;
    min-height: fit-content;
    display: flex;
    flex-direction: column;
    margin-top: 1rem;
}

#formGetApk {
    width: 100%;
    display: flex;
    flex-direction: column;
    /* margin-block-end (user agent stylesheet) pone 1em */
    margin: 0;
}

#logo-container,
#apk-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

#btnApp {
    width: fit-content;
    min-width: 30%;
    height: 3rem;
    padding: 0.4rem;
    align-self: center;

    display: flex;
    column-gap: 0.4rem;
    align-items: center;
    justify-content: space-around;
    background-color: transparent;

    font-family: "aptos";
}

#btnApp-logo {
    width: auto;
    height: 100%;
}

#updateAppTextOutdated {
    color: var(--blue-border);
    font-weight: bold;
}

#apk-container {
    width: 100%;
    flex-direction: column;
    row-gap: 1rem;
    color: var(--blue-border);
    font-size: 0.98rem;
    text-align: center;
}

/* Para moviles - REVISAR */
@media (min-height: 668px) {
    #wrapper {
        height: 100vh;
    }
}

@media (min-width: 640px) {

    /* #wrapper {
        height: 100vh;
    } */
    .main-content-size {
        min-height: fit-content;
        width: 60%;
        height: 70%;
        padding: 2rem;
        margin: 0;
    }
}

@media (min-width: 768px) {
    .main-content-size {
        width: 60%;
        height: 70%;
    }
}

@media (min-width: 1024px) {
    .main-content-size {
        width: 45%;
        height: 70%;
    }
}

@media (min-width: 1280px) {
    .main-content-size {
        width: 30%;
        height: 70%;
    }
}

@media (min-width: 1536px) {
    .main-content-size {
        width: 20%;
        height: 70%;
    }
}