body {
    background-color: #f6f8fa;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 100vh;
}

.container .section {
    display: flex;
    justify-content: center;
    background-color: white;
    border-radius: 25px;
    width: 95%;
    flex-direction: column;
    max-width: 750px;
    padding: 30px;
    gap: 7px;
}

.container .section h1 {
    font-family: "YekanBakhFaNum-Bold", sans-serif;
    font-size: 30px;
    color: #2463f5;
    margin: 30px auto 0 auto;
}

.container .section .line {
    width: 200px;
    height: 2px;
    background-color: #eaeaea;
    margin: 0 auto 30px auto;
    max-width: 55%;
}

.container .section .detail {
    font-family: "YekanBakhFaNum-SemiBold", sans-serif;
}

.container .section .box-input {
    width: 100%;
    position: relative;
}

.container .section .box-input #phone {
    padding: 15px 50px 15px 20px;
    background-color: #f7f8fa;
    border-radius: 20px;
    border: none;
    line-height: 35px;
    margin: 10px 0 5px 0;
    font-family: "YekanBakhFaNum-SemiBold", sans-serif;
    outline: none;
    font-size: 16px;
    width: 100%;
}

.container .section .box-input input::-webkit-outer-spin-button,
.container .section .box-input input::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

.container .section .box-input input[type=number] {
    -moz-appearance: textfield;
}

.container .section .box-input #label-phone {
    position: absolute;
    margin-top: 30px;
    margin-right: 25px;
}

.container .section .box-input #label-phone img {
    width: 25px;
    height: 25px;
}

.container .section #login {
    background-color: #2463f5;
    color: #ffffff;
    margin-top: 25px;
    padding: 15px;
    border-radius: 50px;
    cursor: pointer;
    border: none;
    width: fit-content;
    font-family: 'YekanBakhFaNum-Bold', sans-serif;
    align-self: center;
    min-width: 180px;
}

.container .section #label-read-privacy-policy {
    font-family: 'YekanBakhFaNum-SemiBold', sans-serif;
    font-size: 14px;
    margin-top: 10px;
}

.container .section #label-read-privacy-policy a {
    font-family: 'YekanBakhFaNum-SemiBold', sans-serif;
    font-size: 14px;
}

.container .section #read-privacy-policy {
    width: auto;
    position: relative;
    top: 3px;
    right: -1px;
}

.error {
    background-color: #DC3545FF;
    color: white;
    padding: 8px 15px;
    border-radius: 5px;
    margin: 5px auto;
    width: 100%;
    font-family: "YekanBakhFaNum-SemiBold", sans-serif;
    text-align: justify;
}

@media all and (max-width: 550px) {
    .container .section {
        padding: 20px;
    }

    .container .section h1 {
        font-size: 25px;
    }

    .container .section #label-read-privacy-policy,
    .container .section #label-read-privacy-policy a {
        font-size: 13px;
    }
}