@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body {
    margin:0;
    background-color: #e5e5e5;
    font-family: "Poppins", sans-serif;
    color: #333;
    height: 100dvh;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: content-box;
}

:focus {
  outline: none;
  box-shadow: none;
}

a {
  -webkit-tap-highlight-color: transparent;
}

.error {}
.error p {
    margin: 10px 0 -20px 0;
    padding: 0;
    max-width: 100%;
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
    color: #F44336;
}

.mini_logo {
    text-align: center;
    background-color: #fff;
    padding: 10px 0;
    border-radius: 5px;
}
.mini_logo svg {
    width: 85px;
    position: relative;
    top: 3px;
    left: 10px;
}
.mini_logo svg path {
    fill: #333;
}

.kapsar {
    width: calc( 100% - 40px );
    height: calc( 100% - 40px );
    padding: 20px;
    overflow: hidden;
}

.form {display: flex;width: 100%;flex-direction: column;margin-top: 35px;}

.input {display: flex;flex-direction: column;}

.input label {font-size: 13px;padding-bottom: 5px;}

.input .form-control {border: none;border-bottom: 1px solid #b1b1b1;background: none;outline: none;padding: 10px 0;font-family: Inter;font-size: 16px;border-radius: 0;}

.title {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-top: 35px;
}
.title h2 {
    font-weight: 500;
    margin: 0;
    color: #333;
    font-size: 20px;
}
.title small {
    font-size: 13px;
    font-weight: 300;
    color: #555;
    display: inline-block;
}
.title p {
    margin: 0;
    padding: 0;
    max-width: 100%;
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
    color: #555;
}
.title a {
    color: green;
    text-decoration: unset;
}

.board {}

.button {
    display: flex;
    justify-content: flex-end;
    margin-top: 25px;
}
.button button {
    text-decoration: unset;
    color: #fff;
    background-color: #333;
    font-size: 13px;
    padding: 10px 15px;
    border-radius: 50px;
    border: none;
    outline: none;
    font-family: Inter;
}