.login {
    background-image: url(../../images/bg/loginbg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}

.border
{
    background: rgba(255, 255, 255, 0.3); /* Hafif saydam beyaz */
  backdrop-filter: blur(5px); /* Bulanıklık efekti */
   -webkit-backdrop-filter: blur(10px);  
   border:none !important;
   border-radius: 10px;
    
}
.border input
{
    border:1px solid var(--site-color);
    color:var(--site-color);
 }
 .border h2
 {
    background-color: var(--site-color);
    color:white;
 }
.border label,a
{
    color: var(--site-color);
    font-weight: bold;
}
.border button
{
    background-color: var(--site-color);
    border:none;
    color:white;
}
.border button:hover
{
    color:white;
    background-color: var(--site-color);
}
.element
{
    color: white;
    background-color: var(--site-color);
    font-size: 3rem;
}
@media (max-width: 768px) {
    .typed-cursor
    {
        font-size: 2rem;
     
    }
    #typed-strings
    {
        min-height: 300px;
        margin-top:50px;
    }
}

#notification {
    position: fixed;
    top: 20px;
    right: -300px; /* Başlangıçta sağ dışarıda */
    color: white;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: auto;
    font-size: 14px;
    opacity: 0;
    visibility: hidden;
    z-index: 9999;
    transition: right 0.5s ease, opacity 0.5s ease, visibility 0s 0.5s;
}

#notification.show {
    right: 20px;
    opacity: 1;
    visibility: visible;
    transition: right 0.5s ease, opacity 0.5s ease;
}