@import url('https://fonts.googleapis.com/css?family=Mukta');

body {
    font-family: 'Mukta', sans-serif;
    height: 100vh;
    min-height: 550px;
    background-image: url(https://static1.squarespace.com/static/55d344b4e4b0b49feaef5198/55ddfac4e4b0edc068bc3e3e/55ddfb08e4b0e281188cbcec/1440611087009/side-room2.jpg?format=1500w);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
}

a {
    text-decoration: none;
    color: #444444;
}

.login-reg-panel {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
    width: 70%;
    right: 0;
    left: 0;
    margin: auto;
    height: 400px;
    background-color: rgba(30, 30, 30, 0.9);
}

.white-panel {
    background-color: rgba(255, 255, 255, 1);
    height: 500px;
    position: absolute;
    top: -50px;
    width: 50%;
    right: calc(50% - 50px);
    transition: .3s ease-in-out;
    z-index: 0;
}

.login-reg-panel input[type="radio"] {
    position: relative;
    display: none;
}

.login-reg-panel {
    color: #B8B8B8;
}

.login-reg-panel #label-login,
.login-reg-panel #label-register {
    border: 1px solid #9E9E9E;
    padding: 0 5px;
    width: 150px;
    display: block;
    text-align: center;
    border-radius: 3px;
    cursor: pointer;
}

.login-info-box {
    width: 30%;
    padding: 0 50px;
    top: 20%;
    left: 0;
    position: absolute;
    text-align: left;
}

.register-info-box {
    width: 30%;
    padding: 0 50px;
    top: 20%;
    right: 0;
    position: absolute;
    text-align: left;

}

.right-log {
    right: 50px !important;
}

.login-show,
.register-show {
    z-index: 1;
    display: none;
    opacity: 0;
    transition: 0.3s ease-in-out;
    color: #242424;
    text-align: left;
    padding: 50px;
}

.show-log-panel {
    display: block;
    opacity: 0.9;
}

.login-show input[type="text"],
.login-show input[type="password"] {
    width: 100%;
    display: block;
    margin: 20px 0;
    padding: 15px;
    border: 1px solid #b5b5b5;
    outline: none;
}

.login-show input[type="button"] {
    max-width: 150px;
    width: 100%;
    background: #444444;
    color: #f9f9f9;
    border: none;
    padding: 10px;
    text-transform: uppercase;
    border-radius: 2px;
    float: right;
    cursor: pointer;
}

.login-show a {
    display: inline-block;
    padding: 10px 0;
}

.register-show input[type="text"],
.register-show input[type="password"] {
    width: 100%;
    display: block;
    margin: 20px 0;
    padding: 15px;
    border: 1px solid #b5b5b5;
    outline: none;
}

.register-show input[type="button"] {
    max-width: 150px;
    width: 100%;
    background: #444444;
    color: #f9f9f9;
    border: none;
    padding: 10px;
    text-transform: uppercase;
    border-radius: 2px;
    float: right;
    cursor: pointer;
}

.credit {
    position: absolute;
    bottom: 10px;
    left: 10px;
    color: #3B3B25;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 1px;
    z-index: 99;
}

a {
    text-decoration: none;
    color: #eaeaea;
}


.soft-footer-minimal {
    position: fixed;
    /* Sabit pozisyon */
    bottom: 0;
    /* En alt */
    left: 0;
    /* Soldan sıfır */
    width: 100%;
    /* Tüm genişlik */
    z-index: 9999;
    /* Üstte kalması için yüksek z-index */
    box-shadow: 0 -1px 10px rgb(0 0 0 / 0.05);
    /* Hafif gölge (opsiyonel) */
    background: #fafafa;
    /* Arka plan yine açık */
    padding: 20px 15px;
    text-align: center;
    animation: softFadeScale 0.7s ease forwards;
}

/* İçerik max genişlik için, opsiyonel */
.soft-footer-content {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    align-items: center;
}

/* Responsive düzenlemeler aynı kalabilir */

.soft-footer-brand {
    flex: 1 1 220px;
}

.soft-footer-logo {
    font-weight: 500;
    font-size: 1.6rem;
    color: #666;
    margin-bottom: 4px;
    letter-spacing: 0.1em;
    font-style: italic;
}

.soft-footer-subtitle {
    font-weight: 300;
    font-size: 0.9rem;
    color: #bbb;
}

.soft-footer-links {
    flex: 1 1 280px;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.soft-footer-link {
    font-weight: 400;
    font-size: 0.95rem;
    text-decoration: none;
    color: #aaa;
    border-bottom: 1px solid transparent;
    padding-bottom: 3px;
    transition: color 0.25s ease, border-color 0.25s ease;
}

.soft-footer-link:hover {
    color: #777;
    border-color: #ccc;
}

.soft-footer-socials {
    flex: 1 1 140px;
    display: flex;
    justify-content: center;
    gap: 25px;
}

.soft-social-link svg {
    stroke: #bbb;
    transition: stroke 0.3s ease;
}

.soft-social-link:hover svg {
    stroke: #888;
}

.soft-footer-copy {
    display: block;
    font-size: 0.8rem;
    font-weight: 300;
    color: #ccc;
    letter-spacing: 0.1em;
    user-select: text;
}

/* Yumuşak fade in scale animasyon */
@keyframes softFadeScale {
    from {
        opacity: 0;
        transform: scale(0.98);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.soft-footer-minimal {
    animation: softFadeScale 0.7s ease forwards;
}

/* Responsive */
@media (max-width: 720px) {
    .soft-footer-content {
        flex-direction: column;
        gap: 25px;
    }

    .soft-footer-links {
        flex-wrap: nowrap;
        justify-content: space-evenly;
        width: 100%;
    }
}