.login{
    width: 85%;
    color: #29C8FF;
    border: 2px solid #29C8FF;
    border-radius: 18px;
    display: flex;
    align-items: center;
    flex-direction: column;
    row-gap: 2vw;
    padding: 30px 0px 20px 0px;
    min-width: 250px;
    height: max-content;
    background-color: #000000c2;
}

.login h2{
    font-size: 26px;
    text-align: center;
    user-select: none;
}

.socialNetworks{
    width: max-content;
    display: flex;
    column-gap: 20px;
    margin: auto;
}

.socialNetworks img{
    width: 21px;
    height: 21px;
    object-fit: contain;
    user-select: none;
}

.login a{
    color: #29C8FF;
    font-size: 14px;
    cursor: pointer;
    user-select: none;
}

.login span{
    font-size: 14px;
    font-weight: bold;
    color: white;
    margin-right: 4px;
    user-select: none;
}

.login button{
    height: 45px;
    background-color: #29C8FF;
    color: white;
    margin-top: 0px;
    border-radius: 6px;
    padding: 6px 10px;
    border: 0;
    cursor: pointer;
}

.login button:disabled{
    color: #c6c1c1;
    background-color: #2A7893;
    cursor: not-allowed;
}

.login input{
    width: 100%;
    padding: 8px 10px;
    background-color: transparent;
    border: 2px solid #29C8FF;
    border-radius: 10px;
    color: #29C8FF;
    -webkit-text-fill-color:#29C8FF;
    text-align: center;
    outline: none;
}

.input-container{
    width: 85%;
    position: relative;
}

.input-container img{
    width: 25px;
    height: 25px;
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    cursor: pointer;
    user-select: none;
}