/* Ana Container */
.register-dashboard {
    background-color: #0b151d !important;
    border: 1px solid #31495e !important;
    box-shadow: 0px 0px 19px -2px rgba(0, 0, 0, 0.75) !important;
    -webkit-box-shadow: 0px 0px 19px -2px rgba(0, 0, 0, 0.75) !important;
    -moz-box-shadow: 0px 0px 19px -2px rgba(0,0,0,0.75)!important;
    border-radius: 8px;
    padding: 20px;
    position: relative;
}

/* BaÅŸlÄ±k Stili */
.register-dashboard-title {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #31495e;
    position: relative;
}

.register-dashboard-title::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, #b2d0d3 0%, rgba(255, 166, 38, 0) 100%);
}

.register-dashboard-title img {
    width: 32px;
    height: 32px;
    filter: drop-shadow(0 0 8px rgba(255, 166, 38, 0.3));
}

.register-dashboard-title h1 {
    color: #b2d0d3;
    font-size: 24px !important;
    font-weight: 600;
    margin: 0;
    text-shadow: 0 0 10px rgba(255, 166, 38, 0.1);
}

/* Form Container */
.register-form-container {
    background: #11212d;
    border: 1px solid #31495e;
    border-radius: 12px;
    padding: 30px;
    margin-top: 20px;
}

/* Ãœst Bilgi AlanÄ± */
.register-info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(62, 102, 132, 0.3);
}

.register-info-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.register-info-left img {
    width: 40px;
    height: 40px;
	filter: drop-shadow(0 0 8px rgba(78, 255, 246, 0.3));
}

.register-info-left h4 {
    color: #b2d0d3;
    font-size: 18px;
    margin: 0;
}

.register-info-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.register-info-right h4 {
    color: #b2d0d3;
    font-size: 16px;
    margin: 0;
}

.register-info-right a {
    color: #4b9098;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.register-info-right a:hover {
    text-shadow: 0 0 10px rgba(255, 166, 38, 0.1);
}

/* Form ElemanlarÄ± */
.register-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.register-form label {
    color: #a3c1d6;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
    display: block;
}

.register-form input[type="text"],
.register-form input[type="email"],
.register-form input[type="password"] {
    width: 100%;
    background: #31495e;
    border: 1px solid #446582;
    border-radius: 8px;
    padding: 12px 15px;
    color: #a3c1d6;
    font-size: 14px;
    transition: all 0.3s ease;
}

.register-form input[type="text"]:focus,
.register-form input[type="email"]:focus,
.register-form input[type="password"]:focus {
    border-color: #64beff;
    box-shadow: 0 0 0 2px rgba(78, 255, 246, 0.1);
    outline: none;
}

.register-form input[type="text"]::placeholder,
.register-form input[type="email"]::placeholder,
.register-form input[type="password"]::placeholder {
    color: #a3c1d6;
}

.register-form .form-hint {
    color: #5a778b;
    font-size: 12px;
    margin-top: 6px;
    margin-left: 4px;
}

/* KayÄ±t Ol Butonu */
.register-submit-btn {
    background: #36977b;
    border: 1px solid #5ebba0;
    border-radius: 8px;
    color: #b2d0d3!important;
    font-size: 16px;
    font-weight: 500;
    padding: 14px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
    width: 100%;
}

.register-submit-btn:hover {
    background: #45bb99;
    border: 1px solid #72e1c1;
}

/* Responsive */
@media (max-width: 768px) {
    .register-info-header {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .register-info-right {
        flex-direction: column;
        gap: 10px;
    }

    .register-form-container {
        padding: 20px;
    }
}