@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300&display=swap');
@font-face {
    font-family: 'VelaSans';
    src: url('fonts/VelaSans-SemiBold.woff2') format('woff2'), 
         url('fonts/VelaSans-SemiBold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-feature-settings: "ss02" on;
}
@font-face {
    font-family: 'VelaSans';
    src: url('fonts/VelaSans-SemiBold.woff2') format('woff2'),
         url('fonts/VelaSans-SemiBold.woff') format('woff');
    font-weight: 500;
    font-style: normal;
}


body {
    background: linear-gradient(to bottom right, #003257, #004F6A, #003257);
    background-attachment: fixed;
    font-family: 'Open Sans', Calibri, Tahoma, sans-serif;
    font-size: 0.875rem;
    line-height: 1.15;
    color: #f5f5f5; /* Kırık beyaz renk */
}

.container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start; /* Yukarı taşıma */
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 20px;
}

.logo-container {
    text-align: left;
    margin-top: calc((100vh - 30%) / 2); /* Yukarı taşıma */
}

.logo {
    font-size: 5em; /* Font boyutunu büyüt */
    font-weight: bold;
    text-decoration: none;
    opacity: 0; /* Başlangıçta görünmez yap */
    font-family: 'VelaSans', sans-serif;
    font-feature-settings: "ss02" on;
    color: #f5f5f5; /* Kırık beyaz renk */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6); /* İç gölge ekleme */
    animation: fadeIn 2s forwards; /* fadeIn animasyonu ekle */
}

.tagline {
    font-size: 1.5rem;
    line-height: 2rem; /* Çizgi boyunu küçült */
    font-weight: 300;
    color: #f5f5f5; /* Kırık beyaz renk */
    margin-top: 10px; /* Boşluğu azalt */
    opacity: 0; /* Başlangıçta görünmez yap */
    animation: fadeIn 2s forwards; /* fadeIn animasyonu ekle */
}

@keyframes fadeIn {
    to {
        opacity: 0.8; /* Görünür yap */
    }
}

.register-form,
.login-form,
.forgot-form,
.reset-form {
    width: 100%;
    max-width: 375px;
    padding: 40px 65px;
    background-color: #fff;
    box-shadow: 0 0 14px 0 rgba(0, 0, 0, .1);
    border-radius: 2px;
}

.register-form h2,
.login-form h2,
.forgot-form h2,
.reset-form h2 {
    font-size: 2rem;
    line-height: 2.71429rem;
    font-weight: 300;
    color: #252525;
    margin-bottom: 30px; /* Başlık altındaki boşluğu artır */
    text-align: center;
}

.register-form form,
.login-form form,
.forgot-form form,
.reset-form form {
    display: flex;
    flex-direction: column;
}

.register-form label,
.login-form label,
.forgot-form label,
.reset-form label {
    margin-bottom: 5px; /* Etiketleri metin giriş alanlarına yaklaştır */
    font-weight: bold;
    color: #252525;
}

.register-form input,
.login-form input,
.forgot-form input,
reset-form input {
    margin-bottom: 15px;
    padding: 10px;
    font-size: 1rem; /* Font boyutunu büyüt */
    border: none;
    border-bottom: 1px solid #6a7070;
    border-radius: 0;
    background: none;
    outline: none;
    color: #252525;
    transition: border-color 0.3s;
}

.register-form small,
.login-form small,
.forgot-form small,
reset-form small {
    color: #666; /* Her zaman #666 renk */
    display: block;
    margin-bottom: 15px;
}

.register-form input[type="submit"],
.login-form input[type="submit"],
.forgot-form input[type="submit"],
reset-form input[type="submit"] {
    font-family: 'Open Sans', sans-serif; /* Open Sans fontu */
    color: #252525;
    background-color: #ffb81c;
    border-radius: 2px;
    height: 44px;
    font-size: 18px;
    line-height: 44px;
    padding: 0 20px;
    font-weight: bold; /* Kalın yazı */
    border: none; /* Alt kenar çizgisi kaldırıldı */
    margin-top: 20px; /* Create account butonu ile yukarısı arasındaki boşluk */
    cursor: pointer; /* Mouse ikonu değişimi */
}

.register-form input[type="submit"]:hover,
.login-form input[type="submit"]:hover,
.forgot-form input[type="submit"]:hover,
reset-form input[type="submit"]:hover {
    background-color: #e6a700;
}

.terms,
.forgot-password,
.back-to-signin {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    letter-spacing: 0.5px; /* Harf aralığını artır */
    margin-top: 20px; /* Create account butonu ile arasındaki boşluğu artır */
}

.terms input[type="checkbox"] {
    margin-right: 10px;
}

.terms a,
.forgot-password a,
.back-to-signin a {
    color: #ffb81c; /* Link rengi */
    text-decoration: none;
}

.terms a:hover,
.forgot-password a:hover,
.back-to-signin a:hover {
    text-decoration: underline;
}

.forgot-password a.bold,
.back-to-signin a.bold {
    font-weight: bold; /* Forgot your password? ve Back to Sign in yazısını kalın yap */
}

.terms p {
    color: #252525; /* By signing in... kısmını #252525 yap */
}

.terms p .bold {
    font-weight: bold; /* By signing in... cümlesinin tamamını kalın yap */
}

.signin-link,
.new-account {
    text-align: center;
    margin-top: 20px;
    font-weight: bold;
    color: #252525; /* Rengi değiştir */
}

.signin-link a,
.new-account a.btn-create-account {
    color: #ffb81c; /* Sign in rengini ayarla */
    text-decoration: none;
}

.signin-link a:hover,
.new-account a.btn-create-account:hover {
    text-decoration: underline;
}

.new-account-background {
    background-color: transparent; /* Arka plan rengini iptal et */
    padding: 0;
    margin-top: 0;
    border-radius: 0;
}

.new-account {
    font-size: 1.5rem; /* New to ULAMS? yazısının font boyutunu büyüt */
}

.new-account a.btn-create-account {
    background-color: #005a70; /* Create an account butonu arka plan rengi */
    color: #fff; /* Buton yazı rengi */
    padding: 10px 20px;
    border-radius: 2px;
    display: inline-block;
    font-size: 18px;
    line-height: 44px;
    margin-top: 10px;
    width: 100%; /* Buton genişliği */
    text-align: center;
}

.center-text {
    text-align: center;
    color: #252525;
}

.footer {
    text-align: center;
    margin-top: 50px;
    margin-bottom: 20px; /* Altına biraz daha boşluk bırak */
    position: relative;
}

.footer-links {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links.separated li {
    margin: 0 5px; /* Margin değeri değiştirildi */
}

.footer-links.separated li+li {
    border-left: 1px solid #ccdee2;
    padding-left: 10px;
}

.footer-links li {
    color: #ffffff;
    text-decoration: none;
}

.footer-links li.no-link:hover {
    text-decoration: none; /* Alt çizgiyi kaldır */
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: underline;
}

.error {
    color: red;
    margin-bottom: 15px;
    font-weight: bold;
    text-align: center;
}

#password-requirements {
    display: block;
}

input:focus + small {
    color: #666;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4);
    padding-top: 60px;
}

.modal-content {
    background-color: #fefefe;
    margin: 5% auto;
    padding: 30px;
    width: 50%;
    border-radius: 25px;
    text-align: center;
    color: #252525; /* Yazı rengi */
}

.modal-icon {
    width: 50px;
    height: 50px;
    vertical-align: middle;
}

.modal p {
    display: block;
    margin: 10px 0; /* Satır boşluğu */
    font-size: 18px;
    line-height: 1.5em; /* Satır yüksekliği */
}

.modal p span {
    font-weight: bold; /* E-posta adresini kalın yap */
}

.modal button {
    background-color: #e6a700; /* Buton rengi */
    border: none;
    color: #252525; /* Buton yazı rengi */
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 20px 2px;
    cursor: pointer;
    font-family: 'Open Sans', sans-serif; /* Font ailesi */
    font-weight: bold; /* Buton yazısını kalın yap */
}

.modal button:hover {
    background-color: #d4a600;
}

/* Index page styles */
.index-body {
    overflow: hidden; /* Sayfa kaydırma çubuğunu gizle */
}

.index-container {
    display: flex;
    flex-direction: column;
    height: 100vh; /* Sayfanın tamamını kapla */
    justify-content: space-between; /* İçeriği ve footer'ı ayır */
    overflow: hidden; /* Sayfa kaydırma çubuğunu gizle */
}

.center {
    text-align: center;
    margin-top: calc((100vh - 30%) / 2); /* Yukarı taşıma */
}

#changing-word {
    display: inline-block;
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
    min-width: 90px; /* Minimum genişlik belirle */
    color: #ffb81c; /* İlk kelime rengi */
    position: relative;
    top: 0;
}

@keyframes fadeSlide {
    0% {
        opacity: 0;
        transform: translateY(-100%);
    }
    50% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(100%);
    }
}

@keyframes fadeSlideIn {
    0% {
        opacity: 0;
        transform: translateY(-100%);
    }
    50% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(100%);
    }
}

.btn-get-started {
    font-family: 'Open Sans', sans-serif;
    color: #252525;
    background-color: #ffb81c;
    border-radius: 2px;
    height: 44px;
    font-size: 18px;
    line-height: 44px;
    padding: 0 20px;
    font-weight: bold;
    border: none;
    margin-top: 20px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.btn-get-started:hover {
    background-color: #e6a700;
}

/* Medya sorguları mobil cihazlar için */
@media only screen and (max-width: 1000px) {
    .container {
        flex-direction: column;
        align-items: center;
        padding: 20px;
    }

    .logo-container {
        text-align: center;
        margin-bottom: 20px;
        margin-top: 10px;
    }

    .logo {
        font-size: 5em; /* Logo boyutunu büyüt */
    }

    .tagline {
        display: none; /* Tagline'ı gizle */
    }

    .register-form,
    .login-form,
    .forgot-form,
    .reset-form {
        max-width: 85%; /* Formun genişliğini sınırlamak için */
        box-shadow: none;
        border-radius: 0;
    }

    .register-form h2,
    .login-form h2,
    .forgot-form h2,
    .reset-form h2 {
        font-size: 4rem; /* Başlık boyutunu büyüt */
        margin-bottom: 100px; /* Başlık altındaki boşluğu artır */
    }

    .register-form input,
    .login-form input,
    .forgot-form input,
    .reset-form input {
        padding: 20px;
        font-size: 1.5rem;
    }

    .register-form small {
        font-size: 1.5rem; /* "8 or more characters..." yazısının boyutunu büyüt */
        font-weight: bold; /* Kalın yap */
    }

    .register-form input[type="submit"],
    .login-form input[type="submit"],
    .forgot-form input[type="submit"],
    .reset-form input[type="submit"] {
        height: 70px; /* Buton yüksekliğini artır */
        font-size: 2rem; /* Buton içindeki yazı boyutunu artır */
        line-height: 70px;
        padding: 0 30px;
    }

    .terms,
    .forgot-password,
    .back-to-signin {
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .signin-link,
    .new-account {
        font-size: 1.5rem; /* Yazıları büyüt */
        font-weight: bold; /* Yazıları kalın yap */
    }

    .footer {
        display: none; /* Footer'ı mobilde gizle */
    }

    body {
        font-size: 1.875rem;
        line-height: 2.15;
    }

    .modal-content {
        width: 90%; /* Mobilde modal genişliğini ayarla */
        padding: 20px; /* Mobilde modal padding'i ayarla */
        border-radius: 10px; /* Mobilde modal köşe yuvarlaklığını ayarla */
    }

    .modal p {
        font-size: 1.5rem; /* Mobilde modal metin boyutunu ayarla */
        line-height: 1.75rem; /* Mobilde modal satır yüksekliğini ayarla */
    }

    .modal button {
        height: 60px; /* Mobilde buton yüksekliğini ayarla */
        font-size: 1.5rem; /* Mobilde buton metin boyutunu ayarla */
        line-height: 60px; /* Mobilde buton satır yüksekliğini ayarla */
        padding: 0 20px; /* Mobilde buton padding'ini ayarla */
    }
}
