body {
    background-color: #f8f9fa;
}
.inbox {
    width: 25%;
    margin:100px auto;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    min-width: 300px;
}
.background {
    width: 80px;
    height: 80px;
    background-size: contain;
    background-position: center;
    margin: 0 auto 20px auto;
}
.input-group {
    position: relative;
    margin-bottom: 15px;
}
.input-group input {
    width: 100%;
    padding: 10px 40px 10px 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
    box-sizing: border-box;
}
.input-group i {
    position: absolute;
    right:  10px;
    top: 50%;
    transform: translateY(-50%);
    color: #888;
}
.btn {
    width: 100%;
    padding: 10px;
    background: #f69846;
    border: none;
    border-radius: 5px;
    color: white;
    font-size: 16px;
    cursor: pointer;
    font-family: 'shabnam';
}
.btn:hover {
    background: #564741;
}
.links {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    font-size: 14px;
    font-family: 'shabnam';
}
.links a {
    color: #564741;
    text-decoration: none;
    
}
.links a:hover{
    color: #f69846;
}