@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html{
    height:100%
}
body {

/*     background: url(../images/bg.png); */
    background: linear-gradient(180deg, rgb(235 175 9) 35%, rgba(255, 235, 59, 1) 100%);
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.container {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.action-container {
    padding: 30px;
    display: grid;
    gap: 10px;
    background: #0000007a;
    border-radius: 5px;
    width: 170px;
    margin-top: 50px;
}

.title-container img {
    height: 100px;
    margin-top: 50px;
}


.action-button {
    text-decoration: none !important;
    width: 100%;
    display: block;
    background: #00000047;
    text-align: center;
    border-radius: 5px;
    height: 39px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: white;
    font-weight: bold;
}

.action-button.signup {
    background-color: orange;
    color: black;
}

.action-button.register {
    background-color: #000000;

}

.image-container img {
    height: 250px;
}

.info-container {
    font-size: 12px;
    font-weight: 500;
    text-align: center;
    padding-bottom:10px;
}

@media(min-width: 999px) {
    .action-container {
        position: absolute;
        right: 50px;
        top: 50px;
    }


}
