.custom-form-container {
    width: 100%;
    max-width: 350px;
    margin: 40px auto;
    padding: 35px;
    background-color: #f7f7f7;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.custom-heading {
    text-align: center;
    margin-bottom: 25px;
    color: #505050;
    font-size: 26px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.custom-form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.form-group {
    margin-bottom: 15px;
    width: 100%;
}

.custom-label {
    display: block;
    margin-bottom: 5px;
    color: #505050;
    font-size: 16px;
}

.custom-input {
    width: 100%;
    padding: 10px;
    border-radius: 4px;
    border: 1px solid #d9d9d9;
    font-size: 14px;
    background-color: #fff;
}

.custom-input:focus {
    border: 2px solid #ccc;
    border-color: #a1aab3;
    outline: #a1aab3;
}

.form-footer {
    text-align: center;
    margin-top: 20px;
    color: #707070;
}

.form-footer a {
    text-decoration: none;
    color: #007BFF;
    font-weight: normal;
}

.form-footer a:hover {
    text-decoration: underline;
    color: #0069d9;
}
