* {
    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;
}

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

.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;
}

.login-form {
    display: flex;
    flex-direction: column;
}

.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;
}

.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;
}

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

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

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

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