body {
    font-family: 'Arial', sans-serif;
    background-color: #0a121a;
	background-image: url('/images/beniara.png') !important;
    color: #c9d1d9;
    text-align: center;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

h2 {
    font-size: 28px;
    color: #2fa1cd;
    margin-bottom: 20px;
}

form {
    background-color: #161b22;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(88, 166, 255, 0.3);
    text-align: center;
    width: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

label {
    font-weight: bold;
    color: #8b949e;
    margin-bottom: 5px;
    align-self: flex-start;
}

input {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #30363d;
    border-radius: 6px;
    background-color: #0d1117;
    color: #c9d1d9;
    font-size: 16px;
    transition: all 0.3s;
    text-align: center;
}

input:focus {
    outline: none;
    border-color: #58a6ff;
    box-shadow: 0 0 10px rgba(88, 166, 255, 0.6);
}

button {
    width: 100%;
    padding: 12px;
    background-color: #2fa1cd;
    border: none;
    border-radius: 6px;
    color: #0d1117;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 10px;
}

button:hover {
    background-color: #1f6feb;
    box-shadow: 0 0 12px rgba(88, 166, 255, 0.8);
}

#responseMessage {
    margin-top: 20px;
    font-size: 18px;
    font-weight: bold;
    color: #58a6ff;
}

.logo {
    width: 100%;
    height: 100%;
    margin-bottom: 15px;
}

#responseMessage {
    margin-top: 20px;
    font-size: 18px;
    font-weight: bold;
    color: #58a6ff;
    display: none; /* Başlangıçta gizli */
    padding: 10px;
    border-radius: 6px;
    background-color: rgba(88, 166, 255, 0.1);
    border: 1px solid #58a6ff;
    width: 100%;
    text-align: center;
    transition: all 0.3s ease-in-out;
}

/* Başarılı mesaj için yeşil renk */
#responseMessage.success {
    color: #28a745;
    background-color: rgba(40, 167, 69, 0.1);
    border-color: #28a745;
}

/* Hata mesajı için kırmızı renk */
#responseMessage.error {
    color: #dc3545;
    background-color: rgba(220, 53, 69, 0.1);
    border-color: #dc3545;
}
