
.changepassword .card
{
backdrop-filter: blur(10px);
-webkit-backdrop-filter: blur(10px);
background: #1f242fcb;
color: #2385d5;
border-radius: 25px;
height: max-content;
}

.changepassword form input[type="password"]
{  
    min-width: auto;
    height: 50px;
    border: 1px solid #2385d5;
    background: #191e29;
    color: #fff;
}

.changepassword form input[type="password"]::placeholder
{  
    color: #fff;
}

.changepassword p {
    color: #ffffff;
  }

.changepassword i{
    display: flex;
    position: relative;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    background: radial-gradient(circle, #47c0cd, #2385d5);
    color: #ffffff;
}

.changepassword .border-error{ border-color: red !important; }

.changepassword .border-success{ border-color: green !important; }

.changepassword form small { color: red; }

#BTN_CHANGEPASSWORD {
    width: 100%;
    padding: 15px;
    margin: 10px;
    background: radial-gradient(circle, #47c0cd, #2385d5);
    border: 0;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    color: #ffffff;
    transition: background-color 0.2s;
}