@font-face {
  font-family: 'Noto Sans Georgian';
  src: url("../assets/fonts/NotoSansGeorgian-Medium.ttf");
  font-weight: 400;
  font-style: normal;
  font-feature-settings:'case' on;
}

@font-face {
  font-family: 'Noto Sans Georgian';
  src: url("../assets/fonts/NotoSansGeorgian-Medium.ttf");
  font-weight: 500;
  font-style: normal;
  font-feature-settings:'case' on;
}

@font-face {
  font-family: 'Noto Sans Georgian';
  src: url("../assets/fonts/NotoSansGeorgian-Medium.ttf");
  font-weight: 700;
  font-style: normal;
  font-feature-settings:'case' on;
}


 body {
  font-family: 'Noto Sans Georgian';
  font-size: 14px;
   font-feature-settings:'case' on;
}
body {
  padding: 0;
}

.container {
 width:300px;
    margin: 0 auto;
    padding: 20px;
    border: 0px solid #ccc;
    border-radius: 5px;
    font-family: "Noto Sans Georgian";
}

label {
    display: block;
    margin-bottom: 5px;
}

 
 
 select {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
        outline:none;
}
 
 
 
 
input[type="text"],
input[type="email"],
input[type="password"] {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
        outline:none;
}

.pulse-button {
    padding: 10px 20px;
    font-size: 36px;
    color: white;
    background-color: #1A2543;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    outline: none;
    transition: transform 0.2s;
}

 
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 123, 255, 0.7);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 20px rgba(0, 123, 255, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 123, 255, 0);
    }
}

 
.pulse-button:hover {
    animation: pulse 1.5s infinite;
}



.password-container {
    display: flex;
    align-items: center;
    position: relative;
     width: 100%;
}

input[type="password"] {
   width: 100%;
    padding: 8px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
        outline:none;
}

p{
    background: none;
    border: none;
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
}

button:focus {
    outline: none;
}

.fa-eye, .fa-eye-slash {
    font-size: 18px;
    color: #666;
}


.invisible {
font-size: 0px;
color: white;
background-color: none;
border: none;
outline: none;

}

