* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #181818;
    color: #e0e0e0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
}

.form-container {
    background-color: #2e2e2e;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    width: 100%;
    max-width: 800px;
}

.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}

.logo {
    width: 50px;
    height: auto;
    margin-right: 10px;
}

.company-name {
    font-size: 1.5rem;
    font-weight: bold;
    color: #B0BEC5;
}

.anasayfa {
    text-decoration: none;
}

.form-title {
    font-size: 1.8rem;
    color: #B0BEC5;
    margin-bottom: 20px;
}

.registration-form {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
}

.input-group {
    margin-bottom: 15px;
    text-align: left;
}

.input-group label {
    display: block;
    margin-bottom: 5px;
    font-size: 20px;
    color: #B0BEC5;
}

.input-group input {
    width: 100%;
    padding: 10px;
    border: 2px solid #555;
    border-radius: 5px;
    background-color: #333;
    color: #fff;
    font-size: 16px;
}

.gender {
    display: flex;
    justify-content: flex-start;
    align-items: first baseline;
}

.gender input{
    margin-left: 5px;
}

#kadinLabel {
    margin-left: 10px;
}

.gender-options {
    display: flex;
    flex-direction: column;
    margin-top: 5px;
    align-items: first baseline;
}

.gender-options label {
    font-size: 18px;
    color: #ffffff;
    display: inline;
}

.gender-options input {
    margin-right: 5px;
    width: 10%;
}

.submit-btn {
    background-color: #B0BEC5;
    border: 1px solid #B0BEC5;
    color: #fff;
    padding: 10px;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 80%;
}

.submit-btn:hover {
    background-color: #90A4AE;
}

.login-link {
    margin-top: 15px;
    font-size: 14px;
    color: #B0BEC5;
}

.login-link a {
    color: #B0BEC5;
    text-decoration: none;
    font-weight: bold;
}

.login-link a:hover {
    color: #90A4AE;
}

.left, .right {
    width: 45%;
}