* {
    margin: 0;
    padding: 0;
}

form#delete_all_suburbs_form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    gap: 20px;
}

p#delete-subs-note {
    width: 50%;
    border: 1px solid;
    background-color: rgba(255, 255, 255, 0.377);
    border-left: 3px solid #f71212;
    padding: 5px 10px;
    border-radius: 5px;
}

#delete_all_suburbs_form label {
    font-size: 30px;
    font-weight: 600;    
}

input#suburb-category-name {
    width: 300px;
    height: 40px;
}

#suburb-cat-dlt-btn {
    width: 180px;
    height: 50px;
    background-color: #17c508;
    color: #fff;
    font-size: 18px;
}

#subs-deleted-success {
    font-size: 20px;
    font-weight: 700;
    display: none;
}

form#delete_all_suburbs_form p {
    font-size: 15px;
}