@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap');

body {
    margin: 0;
    padding: 20px;
    font-family: "Noto Sans", sans-serif;
    background: #201b2c;
}

body * {
    box-sizing: border-box;
}

.main-login{
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center; 
}

.left-login{
    width: 50vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.left-login > h1 {
    font-size: 3vw;
    color: #77ffc0;
}

.left-login-image {
    width: 35vw;
}

.right-login{
    width: 50vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    
    flex-direction: column;
}

.logo {
    width: 10vw;
    margin-top: -100px;
}

.card-login {
    width: 60%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 30px 35px;
    background: #2f2841;
    border-radius: 20px;
    box-shadow: 0px 10px 40px #00000056;
} 

.card-login > h1 {
    color: #00ff88;
    font-weight: 800;
    margin: 0;
}

.textfield {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    margin: 10px 0px;
}

.textfield > input {
    width: 100%;
    border: none;
    border-radius: 10px;
    padding: 15px;
    background: #514869;
    color: #f0ffffde;
    font-size: 12pt;
    box-shadow: 0px 10px 40px #00000056;
    outline: none;
    box-sizing: border-box;
}

.textfield > label {
    color: #f0ffffde;
    margin-bottom: 10px;
}

.textfield > input::placeholder{
  color: #f0ffff94  ;  
} 

.btn-login{
    width: 100%;
    padding: 16px 0px;
    margin-top: 20px;
    border: none;
    border-radius: 8px;
    outline: none;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 3px;
    color: #2b134b;
    background: #00ff88;
    cursor: pointer;
    box-shadow: 0px 10px 40px -12px #00ff8052;
}



.user-studios, .user-achievements {
    flex: 3;
    display: flex;
    gap: 5px;
}
.studio-icon, .achievement-icon {
    width: 50px;
}



@media only screen and (max-width: 950px) {
    .card-login{
        width: 85%;
    }
}
@media only screen and (max-width: 600px) {
    body {
        overflow-x: hidden;
        margin: 0;
        padding: 0;
        width: 100vw;
        height: 100vh;
    }

    .main-login {
        flex-direction: column;
        align-items: center;
        padding: 10px;
        width: 100vw;
        height: 100vh;
        justify-content: flex-start;
    }

    .left-login > h1 {
        display: none;
    }

    .left-login, .right-login {
        width: 100%;
        height: auto;
        padding: 10px;
        display: flex;
        justify-content: center;
        font-size: 12px;
    }

    .left-login-image {
        display: none; /* Oculta a imagem no celular */
    }

    .card-login {
        width: 90%;
        max-width: 280px;
        margin: 0 auto;
        padding: 30px;
    }

    .logo {
        margin-top: -30px;
        width: 45%;
    }
}




.ranking-container {
    max-width: 1200px;
    margin: 50px auto;
    background-color: #2f2841;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.ranking-header {
    text-align: center;
    margin-bottom: 20px;
    color: white;
    letter-spacing: 4px;
}
.ranking-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.ranking-title, .ranking-item {
    display: flex;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
    
}
.ranking-title {
    font-weight: bold;
    border-bottom: 2px solid #000;
}
.ranking-item:last-child {
    border-bottom: none;
}
.user-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 20px;
}

.user-image img {
    max-width: 100%;
    background: black;
}

.user-details {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.user-name {
    flex: 2;
    font-size: 18px;
    margin: 0;
    color: white;
}
.user-cvs {
    flex: 1;
    font-size: 16px;
    color: white;
    display:flex;
    flex-direction: inline;
    align-items: center;
}

.user-stars {
    flex: 1;
    font-size: 16px;
    color: #FFFFA0;
    display:flex;
    flex-direction: inline;
    align-items: center;
}

.user-studios {
    flex: 3;
    display: flex;
    gap: 5px;
    color: #C2FFFF;
}
.studio-icon {
    width: 24px;
    height: 24px;
}

.cvs-image {
    max-width: 50%;
    margin-left: -10px;
}

.stars-image {
    max-width: 28%;
    margin-right: 8px;
}

.user-achievements {
    color: white;
}


