
.form_field {
    margin: 100px 20px 0px 80px;
}
#bodyContainer {
    /* background: url('/assets/images/workspace.jpg') no-repeat; */
    background: var(--loginbg) no-repeat;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
}
#email-input, #password-input{
    background: none;
    color: white;
}
.credential-panel{
    position: relative;
    border-radius: 10px;
    padding: 15px 56px 15px 18px; 
    border: solid 1px #ced4da;
    box-shadow: 0 1px 0 rgba(0,0,0,0.03);
    width: 445px;
}
.credential-row {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}
.credential-item {
    display: flex;
    align-items: center;
}
.label{
    font-weight: 500;
    width: 40px;
    font-size: 13px;
}
.label1{
    font-weight: 500;
    width: 70px;
    font-size: 13px;
}
.value{
    font-size: 13px;
    color: #faf8f8;
    user-select: all; 
    margin-left: 7px;
}
.copy-btn{
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 34px;
    height: 34px;
    border-radius: 6px;
    border: none;
    background: transparent;
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: background .12s ease, transform .08s ease;
}
.icon{
    font-size: 20px;
}
.copy-btn:hover{ background: rgba(235, 233, 233, 0.04);
}
.copy-btn:active{ transform: translateY(-50%) scale(.98);
}
.form{
    margin-top: 18px;
    display:flex;
    gap: 12px;
    align-items: center;
}
.form input{
    padding: 8px 10px;
    border-radius: 6px;
    border: 1px solid #d8d8d8;
    font-size: 14px;
    width: 260px;
}
.icon {
    width: 18px;
    height: 18px;
    display:block;
    fill: #6b6b6b;
}
/*media screen */
@media only screen and (max-width: 988px) {
#bodyContainer{
    background: black;
}
}
@media only screen and (max-width: 320px){
.copy-btn {
    position: absolute;
    right: 7px;
    top: 75%;
}
.label {
    width: 36px;
    font-size: 12px;
}
.label1 {
    width: 63px;
    font-size: 12px;
}
.value {
    font-size: 12px;
    user-select: all;
}
.icon{
    font-size: 15px;
}
.credential-panel {
    position: relative;
    border-radius: 10px;
    padding: 18px 56px 18px 18px;
    border: 1px solid #ffff;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.03);
    width: 198px;
}
#bodyContainer {
    height: 120vh;
}
}
@media only screen and (max-width: 375px) and (min-width: 321px){
.credential-panel {
    width: 250px;
}
#bodyContainer {
    height: 117vh;
}
}
@media only screen and (max-width: 425px) and (min-width: 376px){
.credential-panel {
    width: 300px;
}
#bodyContainer {
    height: 117vh;
}
}
@media only screen and (max-width: 768px) and (min-width: 426px){
.credential-panel {
    width: 100% !important;
    padding-right: 48px;
}
.credential-row {
    flex-direction: column;
    align-items: flex-start;
}
.col {
    width: 100%;
}
.copy-btn {
    top: auto;
    bottom: 12px;
    right: 12px;
    transform: none;
}
}
@media only screen and (max-width: 1024px) and (min-width: 769px){
.credential-panel {
    width: 307px;
}
}
.otp-input {
    width: 45px;
    height: 55px;
    font-size: 24px;
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white !important;
    border-radius: 8px;
}
.otp-input:focus {
    background: rgba(255, 255, 255, 0.2) !important;
    border-color: #ffffff;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
    outline: none;
}
@media only screen and (max-width: 988px) {
#bodyContainer{
        background: black;
}
}
