#overlay-contact{ 
   position: absolute;
   display: flex;
   justify-content: center;
   align-items: center;
   background: rgba(0, 0, 0, 0.3);
   width: 100%;
   height: 100%;
   z-index: 1000;
}

#overlay-container {
    width: 1200px;
    height: 590px;
    border-radius: 30px;
    background-color: #FFFFFF;
}

.overlay-contact{
    display: flex;
    position: relative;
}

.left-overlay-contact{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #2A3647;
    height: 100%;
    width: 467px;
    color: #FFFFFF;
    border-radius: 30px 0 0 30px;
}

.left-overlay-contact img{
    width: 55px;
}

.left-overlay-contact h2{
    font-size: 61px;
}

.left-overlay-contact p {
    font-size: 27px;
    font-weight: 400;
}

.gap{
    display: flex;
    flex-direction: column;
    gap: 16px;
}

#devider-contact{
    width: 90px;
    height: 3px;
    background-color: #29ABE2;
    border-radius: 5px;
}

.right-overlay-contact{
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    padding-left: 3px;
    position: relative;
}

.badges-contact{
    width: 120px;
    height: 120px;
}

.right-overlay-contact form {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.right-overlay-contact input{
    height: 50px;
    width: 420px;
    border: 1px solid #D1D1D1;
    border-radius: 10px;
    cursor: pointer;
    font-size: 20px;
    padding-left: 21px;
}

.right-overlay-contact input::placeholder{
    font-size: 20px;
    color: #D1D1D1;
}

.right-overlay-contact input:focus{
    border: none;
    outline: 2px solid #29ABE2;
    outline-offset: -2px;
}

.inputs-contact{
    display: flex;
    flex-direction: column;
    gap: 48px;
}

#name-input,
#email-input,
#phone-input {
    position: relative;  
}

#name-input img,
#email-input img,
#phone-input img{
    position: absolute;
    width: 24px;
    right: 21px;
    top: 25px;
    transform: translateY(-50%);
}

.bts-contact{
    display: flex;
    position: absolute;
    gap: 24px;
    font-size: 20px;
    padding: 0 3px 5px 3px;
    bottom: 80px
}

#bt-cancel {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #2A3647;
    border-radius: 10px;
    width: 126px;
    height: 56px;
    gap: 4px;
    cursor: pointer;
}

#bt-cancel:hover{
    border: 2px solid #29ABE2;
    color: #29ABE2;
    fill: #29ABE2;
    box-shadow: 0px 4px 4px 0px rgba(0,0,0,0.25);
}

#bt-cancel:hover img{
    content: url(/assets/icons/close_blue.svg);
}

#bt-create-contact{
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background-color: #2A3647;
    width: 214px;
    height: 56px;
    color: #FFFFFF;
    font-weight: 700;
    gap: 4px;
    cursor: pointer;
    border: none;
    font-size: 16px;
}

#bt-create-contact:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

#bt-create-contact:not(:disabled):hover{
    background-color: #29ABE2;
    box-shadow: 0px 4px 4px 0px rgba(0,0,0,0.25);
}

#close-overlay-contact{
    position: absolute;
    top: 32px;
    right: 32px;
    cursor: pointer;
}

#close-overlay-contact:hover{
    background-color: #EEEEEE;
    border-radius: 50px;
}

.badges-edit-contactinfo {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 120px;
    height: 120px;
    border: 3px solid #FFFFFF;
    border-radius: 70px;
    color: #FFFFFF;
    font-size: 47px;
    font-weight: 500;
    box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.1);
}

.bt-edit-contact {
    font-size: 21px !important;
    width: 111px !important;
    height: 57px !important;
}

.bt-edit-cancel {
    width: 111px !important;
}

.bt-edit-cancel img{
    display: none;
}

.bt-add-contact{
    font-size: 21px !important;
}

.alert{
    display: flex !important;
    font-size: 16px;
    font-weight: 400;
    color: red;
    padding-top: 8px;
}

.hide-alert{
    display: none !important;
}

.input-alert {
    border: none !important;
    outline: 1px solid #FF001F !important;
    outline-offset: -2px;
}
    