/* SGB SEO Modern Login Design */

.sgb-login {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    height: 100vh;
    overflow: hidden;
}

.sgb-login-container {
    display: flex;
    width: 100%;
    height: 100vh;
}

/* Sol taraf - Mavi arka plan ve hoş geldin mesajı */
.sgb-login-left {
    flex: 1.2;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 50%, #4a90e2 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px;
    position: relative;
    overflow: hidden;
}

.sgb-welcome-content {
    z-index: 10;
    position: relative;
}

.sgb-welcome-content h1 {
    color: white;
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 8px;
    letter-spacing: 2px;
}

.sgb-welcome-content h2 {
    color: white;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: 1px;
}

.sgb-welcome-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    line-height: 1.6;
    max-width: 400px;
}

/* Geometrik şekiller */
.sgb-geometric-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.sgb-shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.sgb-shape-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    right: -150px;
    background: rgba(255, 255, 255, 0.08);
}

.sgb-shape-2 {
    width: 200px;
    height: 200px;
    bottom: 100px;
    left: -100px;
    background: rgba(255, 255, 255, 0.05);
}

.sgb-shape-3 {
    width: 150px;
    height: 150px;
    top: 200px;
    right: 100px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    transform: rotate(45deg);
}

/* Sağ taraf - Login formu */
.sgb-login-right {
    flex: 1;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.sgb-login-form {
    width: 100%;
    max-width: 400px;
}

.sgb-login-header {
    text-align: center;
    margin-bottom: 40px;
}

.sgb-login-header h3 {
    font-size: 32px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.sgb-login-header p {
    color: #666;
    font-size: 14px;
    margin: 0;
}

/* Form Stilleri */
.sgb-login-form-content {
    width: 100%;
}

.sgb-form-group {
    margin-bottom: 24px;
}

.sgb-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    background: white;
    transition: all 0.3s ease;
}

.sgb-input-wrapper:focus-within,
.sgb-input-wrapper.focused {
    border-color: #4a90e2;
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

.sgb-icon-user,
.sgb-icon-lock {
    padding: 0 15px;
    color: #999;
    font-size: 16px;
}

.sgb-icon-user::before {
    content: "👤";
}

.sgb-icon-lock::before {
    content: "🔒";
}

.sgb-form-control {
    flex: 1;
    border: none;
    outline: none;
    padding: 16px 0;
    font-size: 16px;
    color: #333;
    background: transparent;
}

.sgb-form-control::placeholder {
    color: #999;
}

.sgb-show-password {
    padding: 0 15px;
    color: #4a90e2;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    user-select: none;
    transition: color 0.3s ease;
}

.sgb-show-password:hover {
    color: #2a5298;
}

/* Form Seçenekleri */
.sgb-form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.sgb-remember-me {
    display: flex;
    align-items: center;
}

.sgb-checkbox {
    margin-right: 8px;
    transform: scale(1.2);
}

.sgb-checkbox-label {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.sgb-forgot-password {
    font-size: 14px;
    color: #4a90e2;
    text-decoration: none;
    transition: color 0.3s ease;
}

.sgb-forgot-password:hover {
    color: #2a5298;
    text-decoration: none;
}

/* Butonlar */
.sgb-btn {
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 16px;
}

.sgb-btn-primary {
    background: #4a90e2;
    color: white;
}

.sgb-btn-primary:hover {
    background: #2a5298;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.3);
}

.sgb-btn-secondary {
    background: white;
    color: #4a90e2;
    border: 2px solid #e1e5e9;
}

.sgb-btn-secondary:hover {
    background: #f8f9fa;
    border-color: #4a90e2;
}

/* Footer */
.sgb-login-footer {
    text-align: center;
    margin-top: 32px;
}

.sgb-login-footer p {
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
}

.sgb-signup-link {
    color: #4a90e2;
    text-decoration: none;
    font-weight: 600;
}

.sgb-signup-link:hover {
    color: #2a5298;
    text-decoration: none;
}

.sgb-powered {
    font-size: 12px;
    color: #999 !important;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .sgb-login-container {
        flex-direction: column;
    }

    .sgb-login-left {
        flex: none;
        height: 40vh;
        padding: 40px 20px;
        text-align: center;
    }

    .sgb-welcome-content h1 {
        font-size: 32px;
    }

    .sgb-welcome-content h2 {
        font-size: 20px;
    }

    .sgb-login-right {
        flex: none;
        height: 60vh;
        padding: 20px;
    }

    .sgb-shape-1,
    .sgb-shape-2,
    .sgb-shape-3 {
        display: none;
    }
}

/* Alert mesajları için stil */
#alert {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    min-width: 300px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}