@import url('https://fonts.googleapis.com/css2?family=Inter100&display=swap');

body {
    font-family: 'Inter', sans-serif;
    background-image: url("https://media.discordapp.net/attachments/750938200461148240/995920184927850496/primrea_part_2.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center, center;
}

.login-panel {
    width: 500px;
    height: 100%;
    /* border: solid; */
    background-color: rgba(255, 255, 255, 0.8);
    position: absolute;
    left: 0;
    top: 0;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.login {
    width: 300px;
    display: flex;
    flex-direction: column;
    /* align-content: space-between; */
    align-items: flex-start;
    justify-content: center;
    /* flex-wrap: wrap; */
    line-height: 1.5;
}

.login span {
    display: flex;
    align-items: center;
}

.login h1 {
    font-size: 24px;
}

.login img {
    margin-right: 10px;
    width: 50px;
    height: 50px;
}

.login-button {
    cursor: pointer;
    display: flex;
    color: white;
    margin-top: 120px;
    width: 100%;
    height: 30px;
    border-radius: 25px;
    /* border-color: transparent; */
    align-items: center;
    justify-content: center;
    background-color: rgba(61, 98, 230, 1);
    text-decoration: transparent;
}

/* .login-button span {
    text-align: center;
} */

.ribbon-yellow {
    position: absolute;
    background-color: #FEDC28;
    width: 30px;
    height: 100%;
    right: 0;
}

.ribbon-red {
    position: absolute;
    background-color: #FF4057;
    width: 20px;
    height: 100%;
    right: 0;
}

.ribbon-blue {
    position: absolute;
    background-color: #3E67FB;
    width: 10px;
    height: 100%;
    right: 0;
}

.artist {
    display: block;
    position: absolute;
    right: 0;
    bottom: 0;
    margin: 15px;
}

#popup-message {
    display: flex;
    width: 100%;
    height: 60px;
    border-radius: 5px;
    align-items: center;
    justify-content: center;
    margin-bottom: 50px;
}

@media screen and (max-width: 700px) {
    .login {
        width: 400px;
        align-items: center;
    }
    .login-panel {
        background-color: rgba(255, 255, 255, 1);
        width: 100%;
    }
    .ribbon-yellow {
        height: 30px;
        width: 100%;
        left: 0;
        top: 0;
    }
    
    .ribbon-red {
        height: 20px;
        width: 100%;
        left: 0;
        top: 0;
    }
    
    .ribbon-blue {
        height: 10px;
        width: 100%;
        left: 0;
        top: 0;
    }
    
    .artist {
        display: none;
    }
}