
body , html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    height: 50px;
    color: #000000;
    letter-spacing: 0.5px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
   
}

form {
    min-width: 360px;
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    background-color: rgba(255, 255, 255, 0.13);
    box-shadow: 0 0 3px rgba(187, 187, 187, 0.6);
    padding: 15px 35px;
	margin-top: 700px;

}

form * {
    color: #000000;
    outline: none;
    border: none;
}

form h3 {
    font-size: 32px;
    font-weight: 500;
    line-height: 0px;
    text-align: center;
    padding: 18px;
    margin-top: 3px;

    }

label {
    display: block;
    margin-top: 20px;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 10px;
}

.input-container {
    display: flex;
    height: 50px;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.07);
 
    padding: 0 10px;
    margin-top: 8px;
    font-size: 14px;
    font-weight: 300;
    box-sizing: border-box;
    align-items: center;
    border: 1px solid #d8d8d8;
    border-radius:6px;
}

::placeholder {
    color: #282525;
}

button {
    margin-top: 20px;
    width: 100%;
    background-color: #f5f5f5;
    color: #080710;
    padding: 15px 0;
    font-size: 18px;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
}

.error {
    background-color: #DC3545;
    color: #ffffff;
    padding: 15px;
    font-weight: 300;
    font-size: 14px;
    border-radius: 5px;
}

.success {
    background-color: #28A745;
    color: #ffffff;
    padding: 15px;
    font-weight: 300;
    font-size: 14px;
    border-radius: 5px;
}

.social {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social div {
    text-align: center;
    background: #ff0000;
    width: 150px;
    border-radius: 3px;
    padding: 5px 10px 10px 5px;
    background-color: rgba(255, 255, 255, 0.27);
    color: #eaf0fb;
    cursor: pointer;
}

.social div:hover {
    background-color: rgba(255, 255, 255, 0.47);
}

.social .fb {
    margin-left: 25px;
}

.social i {
    margin-right: 4px;
}

a {
    color: #039be5;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.07);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.07);
}

.header {
    background-color: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Alt kısma gölge efekti */
    display: flex;
    justify-content: left;
    align-items: center;
    width: 100%; /* Genişlik tam ekran */
    height: 80px; /* Yükseklik 80px */
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000; /* Önde görünmesi için yüksek z-index değeri */
}

.logo {
    max-height: 70%; /* Logonun maksimum yüksekliği */
}

.content {
  
    padding: 20px;
    text-align: center;

}

.container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 20px 0;
}

.container hr {
    flex: 1;
    border: none;
    border-top: 1px solid #ccc;
    margin: 0 10px;
}

.container .text {
    padding: 0 10px;
    font-size: 16px;

}

.input-container {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.input-container i {
    margin-right: 10px;
    color: #888;
}

.input-container input {
    border: none;
    outline: none;
    padding: 10px;
    font-size: 16px;
    flex: 1;
}

.button-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s, box-shadow 0.3s;
}

.btn-google, .btn-apple {
    background-color: white;
    color: black;
    border: 1px solid #ccc;
}

.btn-google:hover, .btn-apple:hover {
    background-color: #f2f2f2;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.btn img {
    margin-right: 10px;
    height: 24px;
}

.btn-apple .fa-apple {
    font-size: 24px;
    margin-right: 15px;
    margin-left: -5px;
}

