@font-face {
  font-family: Samim;
  src: url(files/fonts/Samim.ttf);
}
@font-face {
  font-family: Samim;
  src: url(files/fonts/Samim-Bold.ttf);
  font-weight: bold;
}

body {
    font-family: Samim, Tahoma, Geneva, Verdana, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 90vh;
    margin: 0;
}

.failed-box {
  background-color: #e62525;
  color: white;
  font-size: 18px;
  text-align: center;
  border-radius: 10px;
}

.login-form {
    direction: rtl;
    width: 300px;
    padding: 20px;
    background: #049a91;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.button-container{
    text-align: center;
}

.logo {
    text-align: center;
    margin-bottom: 10px;
}

.logo img {
    width: 125px;
    height: auto;
}

h2 {
    text-align: center;
    color: #fff;
    margin-bottom: 20px;
}

.input-group {
    margin-bottom: 15px;
}

.input-group label {
    color: #c7f5d4;
}

.input-group input[type="email"],
.input-group input[type="password"],
.input-group button {
    width: 95%;
    max-width: 95%;
    padding: 8px;
    border: none;
    border-radius: 4px;
    margin-top: 4px;
}

.input-group input[type="email"],
.input-group input[type="password"] {
    background-color: #e8f0fe;
}

.input-group input[type="checkbox"] {
    margin-right: 5px;
}

.input-group button {
    background-color: #4caf50;
    color: white;
    cursor: pointer;
    font-size: 16px;
}

.input-group button:hover {
    background-color: #45a049;
}
