body, html {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background-image: url('System/background.jpg');
}
.Send_type > Label{
    margin-left:10px!important;

}
.login-form {
    /*width: 300px;
    margin: 20px;
    padding: 20px;
    background-color: #fff;*/ /* Form arkaplan rengi */
    /*border: 2px solid #007bff;*/ /* Form kenar rengi */
    /*border-radius: 10px;*/ /* Form köşe yuvarlama */
    /*box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);*/ /* Gölge efekti */
    width: 320px;
    margin: 20px;
    padding: 20px 15px;
    background-color: #fff;
    border: 2px solid #007bff;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.form-control {
    margin-bottom: 15px;
  /*  padding: 10px;*/
    border: 1px solid #ced4da;
    border-radius: 16px; /* Oval şekil için border-radius */
    transition: border-color 0.3s ease;
}

    .form-control:focus {
        border-color: #007bff; /* Odaklandığında rengi değiştir */
    }

.btn {
    font-size: 14px;
    border-radius: 18px;
    width: 48%; /* Önceki 100% olan genişliği 48% olarak değiştirin */
    font-weight: 600;
    background-color: #007bff;
    color: #fff;
    transition: background-color 0.3s ease;
}

    .btn:hover {
        background-color: #0056b3;
    }

.card-title {
    font-weight: 300;
}

.sign-up {
    text-align: center;
    padding: 20px 0 0;
}

.alert {
    margin-bottom: -30px;
    font-size: 13px;
    margin-top: 20px;
}

.version-title {
    font-weight: 400;
    font-size: 10px;
}

.center {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}


.text-warning {
    color: red;
    font-weight: bold;
    font-size: 14px;
    /* Diğer stil özellikleri buraya eklenebilir */
}