* {
    box-sizing: border-box;
}

@font-face {
    font-family: "vazir";
    src: url("/fonts/Vazir.woff");
}

body {
    margin: 0;
    font-family: "vazir";
}

.content {
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cant {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
    width: 30%;
    background-color: white;
    color: black;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    border-radius: 20px;
}

button {
    padding: 5px;
    font-size: 1rem;
    cursor: pointer;
    background-color: red;
    color: white;
    border-radius: 8px;
    width: 50%;
    margin-bottom: 10px;
    border: 0;
}

.logo {
    margin-top: 5px;
}

.logo img {
    width: 300px;
}

.inputBox {
    display: flex;
    align-items: center;
    background-color: #f2f2f2;
    padding: 6px;
    border-radius: 12px;
    width: 90%;
}

.inputBox input {
    flex: 1;
    border: none;
    background-color: transparent;
    padding: 5px;
    font-size: 0.8rem;
    outline: none;
    text-align: right;
}

.back-btn {
    display: flex;
    width: 93%;
    cursor: pointer;
    justify-content: right;
    padding: 10px;
}

.back-btn a {
    text-decoration: none;
    color: red;
    cursor: pointer;
    font-size: 0.8rem;
}

.des {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding-right: 20px;
}

.des .title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.des .tel {
    font-size: 0.8rem;
}

form {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

@media (max-width: 800px) {
    .cant {
        width: 90%;
    }

    .logo img {
        width: 250px;
    }
}