body {
    margin: 150px auto;
    font-family: "Noto Sans Armenian", "Noto Sans", Arial, sans-serif;
    background-color: #ffffff;
}

.home {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.home img {
    margin-bottom: 10px;
}

.home a.privacy {
    text-decoration: none;
    width: 330px;
    height: 40px;
    font-size: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #bbe4a1;
    color: #054236;
    border-radius: 10px;
    transition: all 0.2s ease;
}

.home a.privacy:hover {
    background-color: #054236;
    color: #bbe4a1;
}

/* FORM */

form {
    width: 100%;
    display: flex;
    justify-content: center;
}

.container {
    width: 100%;
    max-width: 360px;
}

.card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.card-body {
    padding: 30px 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.form-outline {
    width: 100%;
    margin-bottom: 15px;
}

.form-outline input {
    width: 90%;
    height: 30px;
    padding: 10px 14px;
    border-radius: 10px;
    border: 1px solid #054236;
    font-size: 14px;
}

.error {
    margin-top: 4px;
    color: red;
    font-size: 12px;
}

.alert-info {
    margin-bottom: 15px;
    color: #054236;
    font-size: 14px;
}

/* BUTTON */

.user-login {
    margin-top: 10px;
    width: 100%;
    height: 44px;
    background-color: #bbe4a1;
    color: #054236;
    border-radius: 10px;
    border: none;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.user-login:hover {
    background-color: #054236;
    color: #bbe4a1;
}

/* CONTACT */

.contact-list {
    list-style: none;
    padding: 0;
    margin-top: 10px;
}

.contact-list li {
    display: flex;
    gap: 10px;
    margin-bottom: 8px;
    font-size: 15px;
}

.contact-list span {
    color: #666;
    min-width: 70px;
}

.contact-list a {
    color: #054236;
    text-decoration: none;
    font-weight: 500;
}

.contact-list a:hover {
    text-decoration: underline;
}