.login-form {
    position: absolute;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    gap: 20px;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.details-form {
    /*
    position: absolute;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    */
    gap: 20px;
    width: 100%;
    display: flex;
    flex-direction: column;
}

label {
    font-size: 13px;
    color: var(--primary-color);
}

.form-input {
    all: unset;
    /* width: calc(100% - 22px); */
    width: 100%;
    color: rgb(46, 45, 45);
    cursor: text;
    font-size: 16px;
    padding: 0 10px;
    line-height: 1.75rem;
    border-radius: 3px;
    border: 1px solid #d8dae0;
    font-weight:400 !important;
    height:30px;
}

.details-form .form-input {
    border: none;
    padding-left: 10px;
    padding-right: 0;
    border-bottom: 1px solid #d8dae0;
}

.btn {
    all: unset;
    cursor: pointer;
    /* padding: 8px 3px; */
    /* width: calc(100% - 6px); */
    width:100%;
    text-align: center;
    border-radius: 5px;
    color: white;
    font-size: 14px;
    background-color: var(--primary-color);
    height:40px;
}

.btn:hover{
    background-color: rgba(41, 119, 187, 0.785);
}

.logo {
    position: relative;
    margin-top: 100px;
    width: 150px;
    left: 50%;
    translate: -50%;
}

.search {
    display: grid;
    gap: 5px;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #d8dae0;
    grid-template-columns: 20px 1fr;
}

.search img {
    width: 20px;
}

.search input {
    all: unset;
    cursor: text;
    color: black;
    font-size: 13px;
}

.add-btn {
    margin-block: 0 !important;
    display: flex;
    justify-content: center;
    align-items: center;
}

.add-btn img {
    width: 20px;
    margin-right: 5px;
}

.doctors-form {
    width: 300px;
    height: calc(100vh - 80px);
    display: grid;
    gap: 20px;
    grid-template-rows: 40px 40px 1fr 40px;
}

.doctors {
    display: flex;
    flex-direction: column;
    /* overflow: scroll; */
}

.doctor-card {
    color: var(--primary-color);
    display: flex;
    padding: 20px;
    justify-content: space-between;
    border-bottom: 1px solid #d8dae0;
}

.delete-btn {
    width: 20px;
}

.add-image-div .delete-btn {
    position: absolute;
    top: 20px;
    right: 20px;
}

.add-image-div {
    position: relative;
    background-color: #f6f6f7;
    margin-bottom: 10px;
    height: 100px;
    display: flex;
    border-radius: 10px;
    align-items: center;
    justify-content: center;
}

.add-image-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80px;
    height: 80px;
    filter: brightness(50%);
    translate: -50% -50%;
}

.add-image-div input {
    opacity: 0;
    width: 80px;
    height: 80px;
}

.details-form-logo {
    position: static;
    margin-top: 0;
    translate: 0;
    margin-inline: auto;
}

* {
    margin: 0;
    padding: 0;
    font-family: sans-serif;
    box-sizing: border-box;
}

body {
    
    width: 100vw;
    height: 100svh;
    
    /*
    display: flex;
    justify-content: center;
    align-items: center;
    */
}

:root {
    --primary-color: #264a98;
}

.logout-btn{
    margin-top: 0;
    position: static;
}

#loader {
    /*//background:#ffff;*/
    bottom: 0; 
    height: 100%; 
    left: 0; 
    overflow: hidden !important; 
    position: fixed;
    right: 0;
    text-align: center;
    top: 30%;
    width: 100%;
    z-index: 99999;
}

@media only screen and (min-width: 768px) {
    .details-form {
        width:300px;
    }
    .login-form {
        width:300px;
    }
  }