.password_title{
    width: 100%;
    margin-bottom: 10px;
    padding: 0px 1px;
    text-decoration: none;
}
.password_title a{
	font-size: 14px;
    color: #ff6000;
    float: right;
    padding-bottom: 9px;
    padding-right: 6px;
}
.btn-kayit-ol {
    background: #ff6000;
    border: none;
    width: 100%;
    margin-top: 20px;
    padding: 16px 36px;
	font-weight: 600;
	color:#fff;
    border-radius: 8px;
}
.buttons{
	width: 100%;
    min-height: 80px;
    font-weight: 600;
    margin-top: 20px;
    overflow: hidden;
    font-size: 13px;
    color: #1c1c1c;
	padding-top: 25px;

}
.text-danger{
	font-size: 13px;
    text-align: left;
	font-weight:600;
	color:red;
	margin-top:-15px;
	margin-bottom:15px;
}

.list-group a{
	color: #fff;
    background-color: #ff6000;
    font-size: 13px;
    padding: 7px 12px;
    text-decoration: none;
    float: left;
    border-radius: 8px;
    margin-bottom: 10px;
    margin-right: 10px;
}

.login_form {
    width: 100%;
    margin: 40px auto;
    max-width: 435px;
    background: #fff;
    border-radius: 8px;
    padding: 15px 30px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}
.login_form h3 {
    font-size: 25px;
    text-align: center;
	font-weight:600;
	color:#1c1c1c;
}
/* Google & Apple button styling */
.login_form .login_option {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
}
.login_form .login_option .option {
    width: calc(100% / 2 - 12px);
}
.login_form .login_option .option a {
    height: 56px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    background: #F8F8FB;
    border: 1px solid #DADAF2;
    border-radius: 5px;
    margin: 34px 0 24px 0;
    text-decoration: none;
    color: #171645;
    font-weight: 500;
    transition: 0.2s ease;
}
.login_form .login_option .option a:hover {
    background: #ededf5;
    border-color: #626cd6;
}
.login_form .login_option .option a img {
    max-width: 25px;
}
.login_form p {
    text-align: center;
    font-weight: 500;
    font-size: 14px;
	color:#1c1c1c;
}
.login_form a {
	color:#ff6000;
}
.login_form .separator {
    position: relative;
    margin-bottom: 24px;
}
/* Login option separator styling */
.login_form .separator span {
    background: #fff;
    z-index: 1;
    padding: 0 10px;
    position: relative;
}
.login_form .separator::after {
    content: '';
    position: absolute;
    width: 100%;
    top: 50%;
    left: 0;
    height: 1px;
    background: #C2C2C2;
    display: block;
}
.login_form  .input_box label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
}
/* Input field styling */
.login_form  .input_box input {
    width: 90%;
    height: 57px;
    border: 1px solid #DADAF2;
    border-radius: 5px;
    outline: none;
    background: #F8F8FB;
    font-size: 17px;
    padding: 0px 20px;
    margin-bottom: 25px;
    transition: 0.2s ease;
}
.login_form  .input_box input:focus {
    border-color: #626cd6;
}
.login_form  .input_box .password_title {
    display: flex;
    justify-content: space-between;
    text-align: center;
}
.login_form  .input_box {
    position: relative;
}

/* Login button styling */
.login_form  button {
    width: 100%;
    height: 56px;
    border-radius: 5px;
    border: none;
    outline: none;
    background: #626CD6;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
    cursor: pointer;
    margin-bottom: 28px;
    transition: 0.3s ease;
}
.login_form button:hover {
    background: #4954d0;
}

@media (max-width: 480px) {
	.login_form {width: 91%; margin: 30px auto; padding: 10px 15px; }
	.login_form .input_box input { width: 85%; }
	.login_form .login_option .option { width: calc(100% / 1 - 0px); }
	.login_form .login_option { display: block; }
}