/* Arka Plan */
body {
    margin: 0;
    padding: 0;
    background-color: #f0f2f5;
    font-family: 'Segoe UI', sans-serif;
}

/* Ortalanmış Kapsayıcı */
.pho-login-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

/* Kart */
.pho-login-card {
    background-color: #fff;
    padding: 30px 25px;
    border-radius: 10px;
    width: 400px;
    max-width: 400px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-top: 9px
}

/* Logo ve Başlık */
.pho-login-logo {
    font-size: 30px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 10px;
    color: #007782;
    font-family: "Lobster", sans-serif;
}

.pho-login-title {
    font-size: 18px;
    text-align: center;
    margin-bottom: 25px;
    color: #444;
}

/* Form */
.pho-form-group {
    margin-bottom: 18px;
}

.pho-form-group label {
    display: block;
    margin-bottom: 6px;
    font-size: 14px;
    color: #333;
}

.pho-form-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
    transition: border-color 0.2s;
}

.pho-form-group input:focus {
    border-color: #007782;
    outline: none;
}

/* Hatalar */
.pho-error-text {
    color: #e74c3c;
    font-size: 13px;
    margin-top: 5px;
    display: block;
}

/* Buton */
.pho-login-button {
    width: 100%;
    padding: 12px;
    background-color: #007782;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.pho-login-button:hover {
    background-color: #005f66;
}

/* Alt Link */
.pho-text-center {
    text-align: center;
}

.pho-mt-3 {
    margin-top: 1rem;
}

.pho-text-center a {
    color: #007782;
    text-decoration: none;
    font-weight: 500;
}

.pho-text-center a:hover {
    text-decoration: underline;
}
